tarka_matchers 0.0.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +11 -0
- data/.rspec +2 -0
- data/.travis.yml +3 -0
- data/Gemfile +4 -0
- data/README.md +39 -0
- data/Rakefile +2 -0
- data/bin/console +7 -0
- data/bin/setup +5 -0
- data/bin/tarka_matchers +14 -0
- data/lib/tarka_matchers/action_dispatch_matchers.rb +5 -0
- data/lib/tarka_matchers/class_matchers.rb +5 -0
- data/lib/tarka_matchers/commands/calibrate.rb +57 -0
- data/lib/tarka_matchers/commands/install.rb +50 -0
- data/lib/tarka_matchers/expectation_matchers.rb +10 -0
- data/lib/tarka_matchers/formatters/difference.rb +41 -0
- data/lib/tarka_matchers/formatters/selected.rb +29 -0
- data/lib/tarka_matchers/formatters/styles.rb +15 -0
- data/lib/tarka_matchers/helpers/expectation/common.rb +25 -0
- data/lib/tarka_matchers/helpers/expectation/expect_capture.rb +53 -0
- data/lib/tarka_matchers/helpers/expectation/result.rb +16 -0
- data/lib/tarka_matchers/helpers/rails/action_dispatch/route_populator.rb +28 -0
- data/lib/tarka_matchers/helpers/string/sgr/sgr_codes.rb +127 -0
- data/lib/tarka_matchers/helpers/string/sgr/sgr_sequences/xterm.txt +108 -0
- data/lib/tarka_matchers/helpers/string/sgr/styled_capture.rb +28 -0
- data/lib/tarka_matchers/matchers/class/have_an_instance_variable_of.rb +39 -0
- data/lib/tarka_matchers/matchers/expectation/fail.rb +35 -0
- data/lib/tarka_matchers/matchers/expectation/have_a_description_of.rb +43 -0
- data/lib/tarka_matchers/matchers/expectation/have_a_failure_message_of.rb +41 -0
- data/lib/tarka_matchers/matchers/expectation/have_a_failure_message_when_negated_of.rb +41 -0
- data/lib/tarka_matchers/matchers/expectation/pass.rb +35 -0
- data/lib/tarka_matchers/matchers/expectation/support_block_expectations.rb +45 -0
- data/lib/tarka_matchers/matchers/rails/action_dispatch/be_named_as.rb +19 -0
- data/lib/tarka_matchers/matchers/regex/match_sections.rb +84 -0
- data/lib/tarka_matchers/matchers/string/sgr/be_red.rb +15 -0
- data/lib/tarka_matchers/rails_matchers.rb +1 -0
- data/lib/tarka_matchers/regex_matchers.rb +5 -0
- data/lib/tarka_matchers/ruby_matchers.rb +3 -0
- data/lib/tarka_matchers/sgr_matchers.rb +5 -0
- data/lib/tarka_matchers/version.rb +3 -0
- data/lib/tarka_matchers.rb +3 -0
- data/tarka_matchers.gemspec +35 -0
- metadata +200 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: f94ee7c5c4c8cdcd352e709eceb8c04255ba3b2e
|
4
|
+
data.tar.gz: fc1bd0779f56e6533d9041afc97a04ba894b84d4
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 78e09d10294d6d0246ca329c175216bc2c36b959e14c3cad418df1e9434749f40e4e960dc546bff206bd1629f2961f292c67d88fa90a6b94aa575f01a80b2a7b
|
7
|
+
data.tar.gz: aea692bd67bdcd52e582bfdbad2689913c2b5dca320e6069ff93dee2207731ff6e447696160d36507a83d25471d0e3d1bb187b541d83d06663dbbdb6568161e7
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/README.md
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
# TarkaMatchers
|
2
|
+
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/tarka_matchers`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'tarka_matchers'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install tarka_matchers
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
TODO: Write usage instructions here
|
26
|
+
|
27
|
+
## Development
|
28
|
+
|
29
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `bin/console` for an interactive prompt that will allow you to experiment.
|
30
|
+
|
31
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release` to create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
32
|
+
|
33
|
+
## Contributing
|
34
|
+
|
35
|
+
1. Fork it ( https://github.com/[my-github-username]/tarka_matchers/fork )
|
36
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
37
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
38
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
39
|
+
5. Create a new Pull Request
|
data/Rakefile
ADDED
data/bin/console
ADDED
data/bin/setup
ADDED
data/bin/tarka_matchers
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
def install argv
|
3
|
+
require 'tarka_matchers/commands/install'
|
4
|
+
TarkaMatchers::Commands.install argv.drop(1)
|
5
|
+
end
|
6
|
+
case ARGV[0]
|
7
|
+
when 'install'
|
8
|
+
install ARGV
|
9
|
+
when 'calibrate'
|
10
|
+
require 'tarka_matchers/commands/calibrate'
|
11
|
+
TarkaMatchers::Commands.calibrate
|
12
|
+
else
|
13
|
+
install ARGV
|
14
|
+
end
|
@@ -0,0 +1,57 @@
|
|
1
|
+
module TarkaMatchers
|
2
|
+
module Commands
|
3
|
+
def self.calibrate
|
4
|
+
lib = File.expand_path('../../../..', __FILE__)
|
5
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
6
|
+
require 'tarka_matchers.config.rb'
|
7
|
+
require 'io/console'
|
8
|
+
require 'terminfo'
|
9
|
+
include TarkaMatchers::Config
|
10
|
+
puts "Beginning SGR calibration test..."
|
11
|
+
all_sgr = [['aaa',0],['aab',0]] #SGR_CODES.map{ |v| [v,0] }
|
12
|
+
SGR_CODES.each_with_index do |v,i|
|
13
|
+
pangram = "The quick brown fox jumps over the lazy dog"
|
14
|
+
spaces = ''
|
15
|
+
(i.to_s.length - 1).times{ spaces << ' ' }
|
16
|
+
puts "Currently testing SGR code: #{i}\n Escaped sequence: \\e[#{i}m\n\nDefault Text, reset with \\e[0m#{spaces}: #{pangram}\nStyled Text, styled with \\e[#{i}m: \e[#{i}m#{pangram}\e[0m\n\nThe styled text should look #{v}."
|
17
|
+
array = ['2222','333221','3322']
|
18
|
+
inputs = []
|
19
|
+
closest = [-1, 0]
|
20
|
+
puts 100
|
21
|
+
while input = STDIN.raw(&:getch)
|
22
|
+
if input == "\r"
|
23
|
+
break
|
24
|
+
else
|
25
|
+
if input == "\u007F"
|
26
|
+
inputs.pop
|
27
|
+
else
|
28
|
+
inputs << input
|
29
|
+
end
|
30
|
+
# puts inputs.inspect
|
31
|
+
# all_sgr.map! do |v|
|
32
|
+
# [v[0], (v[0].split('') & inputs).length]
|
33
|
+
# end
|
34
|
+
# all_sgr.sort_by!{ |v| !v[1] }
|
35
|
+
print "\r \r"
|
36
|
+
STDOUT.flush
|
37
|
+
print "\r#{inputs.join}\r\n\rHello\r"
|
38
|
+
i -= 1
|
39
|
+
end
|
40
|
+
end
|
41
|
+
break
|
42
|
+
SGR_CODES
|
43
|
+
|
44
|
+
=begin
|
45
|
+
require 'time'
|
46
|
+
|
47
|
+
loop do
|
48
|
+
time = Time.now.to_s + "\r"
|
49
|
+
print time
|
50
|
+
$stdout.flush
|
51
|
+
sleep 1
|
52
|
+
end
|
53
|
+
=end
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
@@ -0,0 +1,50 @@
|
|
1
|
+
require 'tarka_matchers/formatters/styles'
|
2
|
+
require 'stringio'
|
3
|
+
module TarkaMatchers
|
4
|
+
module Commands
|
5
|
+
include TarkaMatchers::Formatters::Styles
|
6
|
+
FILE_NAME = /(?:[^\/])+(?=\.txt$)/
|
7
|
+
def self.install flags
|
8
|
+
puts 'Installing tarka_matchers...'
|
9
|
+
path = 'lib/tarka_matchers/helpers/string/sgr/sgr_sequences'
|
10
|
+
detected_terminal = ENV['TERM']
|
11
|
+
specified_terminal = flags.index('-i')
|
12
|
+
specified_terminal ? terminal = flags[specified_terminal+1] : terminal = detected_terminal
|
13
|
+
|
14
|
+
begin
|
15
|
+
sequence = ''
|
16
|
+
sequence_array = IO.read("#{path}/#{terminal}.txt").split("\n")
|
17
|
+
sequence_array_length = sequence_array.length
|
18
|
+
sequence_array.each_with_index do |v,i|
|
19
|
+
string = "\n\t\t\t'#{v}', #\\e[#{i}m"
|
20
|
+
case i
|
21
|
+
when 0
|
22
|
+
sequence << "[#{string}"
|
23
|
+
when sequence_array_length - 1
|
24
|
+
sequence << "#{string}\n\t\t]"
|
25
|
+
else
|
26
|
+
sequence << string
|
27
|
+
end
|
28
|
+
end
|
29
|
+
rescue Errno::ENOENT
|
30
|
+
puts "#{RED_F}TarkaMatchers doesn't currently contain a configuration file for a #{YELLOW_F}#{terminal}#{RED_F} interface. Here are the currently available interface configurations:#{YELLOW_F}"
|
31
|
+
Dir["#{path}/*.txt"].each_with_index{ |v,i| puts FILE_NAME.match(v).to_s.prepend("#{i+1}) ") }
|
32
|
+
puts "#{RED_F}This should only be a concern if you plan on using our SGR matchers, (e.g. 'be_red' or 'be_bold'), and even then, most modern interfaces are configured very similarly to #{YELLOW_F}xterm#{RED_F}. Consider adding a confguration file for your terminal, #{YELLOW_F}#{terminal}#{RED_F}, to the TarkaMatchers github repository.#{RESET}"
|
33
|
+
terminal = 'xterm'
|
34
|
+
end
|
35
|
+
puts sequence
|
36
|
+
config = File.new 'tarka_matchers.config.rb', 'w'
|
37
|
+
config.write "module TarkaMatchers\n\tmodule Config\n\t\tSGR_CODES = #{sequence}\n\t\tend\n\tend"
|
38
|
+
config.close
|
39
|
+
puts "Created config file in gem root: #{GREEN_F}#{Dir.pwd}/#{L_GREEN_F}tarka_matchers_config.rb#{RESET} with #{YELLOW_F}#{terminal}#{RESET} SGR settings applied.\nIf when using our SGR matchers, (e.g. 'be_red' or 'be_bold'), you find your SGR expectations are behaving strangely, edit the #{YELLOW_F}TarkaMatchers::Config::SGR_CODES#{RESET} array, found in #{L_GREEN_F}tarka_matchers_config.rb#{RESET}. For more information into SGR codes visit: 'https://en.wikipedia.org/wiki/ANSI_escape_code'."
|
40
|
+
end
|
41
|
+
|
42
|
+
private
|
43
|
+
def self.sequence_file
|
44
|
+
|
45
|
+
end
|
46
|
+
|
47
|
+
def self.create_config
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
@@ -0,0 +1,10 @@
|
|
1
|
+
require 'tarka_matchers/matchers/expectation/pass'
|
2
|
+
require 'tarka_matchers/matchers/expectation/fail'
|
3
|
+
require 'tarka_matchers/matchers/expectation/have_a_description_of'
|
4
|
+
require 'tarka_matchers/matchers/expectation/have_a_failure_message_of'
|
5
|
+
require 'tarka_matchers/matchers/expectation/have_a_failure_message_when_negated_of'
|
6
|
+
require 'tarka_matchers/matchers/expectation/support_block_expectations'
|
7
|
+
|
8
|
+
class Object
|
9
|
+
include TarkaMatchers::Matchers::Expectation
|
10
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
require 'tarka_matchers/formatters/styles'
|
2
|
+
module TarkaMatchers
|
3
|
+
module Formatters
|
4
|
+
class Difference
|
5
|
+
include Styles
|
6
|
+
|
7
|
+
def self.difference expected, actual
|
8
|
+
expected_line = "#{GREEN_F}Expected: #{BLACK_ON_GREEN}#{expected}#{RESET}"
|
9
|
+
expected_length = expected.length
|
10
|
+
actual_length = actual.length
|
11
|
+
actual_line = "\n#{RESET}#{RED_F} Actual: "
|
12
|
+
|
13
|
+
longest = [expected,actual].sort_by(&:length).last
|
14
|
+
longest_length = longest.length
|
15
|
+
expected = expected.split('')
|
16
|
+
actual = actual.split('')
|
17
|
+
correct = 0
|
18
|
+
|
19
|
+
longest_length.times do |i|
|
20
|
+
e = expected[i]
|
21
|
+
a = actual[i]
|
22
|
+
|
23
|
+
if expected_length <= i
|
24
|
+
expected_line << "#{WHITE_BLOCK}"
|
25
|
+
actual_line << "#{WHITE_ON_RED}#{a}"
|
26
|
+
elsif actual_length <= i
|
27
|
+
actual_line << "#{RED_BLOCK}"
|
28
|
+
elsif e != a
|
29
|
+
actual_line << "#{WHITE_ON_RED}#{a}"
|
30
|
+
elsif e == a
|
31
|
+
correct += 1
|
32
|
+
actual_line << "#{BLACK_ON_GREEN}#{a}"
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
identical = ((correct.to_f/longest_length) * 100).round 3
|
37
|
+
"\n\n#{expected_line}#{actual_line}#{RESET}#{RED_F} - #{identical}% identical#{RESET}"
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
require 'tarka_matchers/formatters/styles'
|
2
|
+
module TarkaMatchers
|
3
|
+
module Formatters
|
4
|
+
class Selected
|
5
|
+
include Styles
|
6
|
+
def self.selected original, selected
|
7
|
+
indexes = []
|
8
|
+
selected.each_slice(2){ |si,ei| indexes << (si..ei).to_a }
|
9
|
+
indexes.flatten!
|
10
|
+
|
11
|
+
original_line = "#{GREEN_F}Original: #{BLACK_ON_GREEN}#{original}#{RESET}"
|
12
|
+
selected_line = "\n#{RESET}#{RED_F}Selected: "
|
13
|
+
|
14
|
+
selects = 0
|
15
|
+
original.split('').each_with_index do |v,i|
|
16
|
+
if indexes.include? i
|
17
|
+
selects += 1
|
18
|
+
selected_line << "#{BLACK_ON_GREEN}#{v}"
|
19
|
+
else
|
20
|
+
selected_line << "#{RED_BLOCK}"
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
matched = ((selects.to_f/original.length) * 100).round 3
|
25
|
+
"\n\n#{original_line}#{selected_line}#{RESET}#{RED_F} - #{matched}% matched#{RESET}"
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
module TarkaMatchers
|
2
|
+
module Formatters
|
3
|
+
module Styles
|
4
|
+
RED_F = "\e[31m"
|
5
|
+
YELLOW_F = "\e[33m"
|
6
|
+
GREEN_F = "\e[32m"
|
7
|
+
L_GREEN_F = "\e[92m"
|
8
|
+
RESET = "\e[0m"
|
9
|
+
WHITE_ON_RED = "\e[41m\e[37m"
|
10
|
+
WHITE_BLOCK = "\e[47m\e[37mX#{RESET}"
|
11
|
+
RED_BLOCK = "\e[41m\e[31mX"
|
12
|
+
BLACK_ON_GREEN = "\e[42m\e[30m"
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
module TarkaMatchers
|
2
|
+
module Helpers
|
3
|
+
module Expectation
|
4
|
+
module Common
|
5
|
+
SGR = /\\e\[(?:10[0-7]|0{1,2}\d|0{0,1}\d\d|\d)m/
|
6
|
+
NEWLINE = /\\n/
|
7
|
+
def keep_sgrs
|
8
|
+
@keep_sgrs = true
|
9
|
+
self
|
10
|
+
end
|
11
|
+
|
12
|
+
def keep_newlines
|
13
|
+
@keep_newlines = true
|
14
|
+
self
|
15
|
+
end
|
16
|
+
|
17
|
+
def clean! string
|
18
|
+
string.gsub!(SGR,'') unless @keep_sgrs
|
19
|
+
string.gsub!(NEWLINE,'') unless @keep_newlines
|
20
|
+
string
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
module TarkaMatchers
|
2
|
+
module Helpers
|
3
|
+
module Expectation
|
4
|
+
class ExpectCapture
|
5
|
+
def initialize target, block_target
|
6
|
+
target == :undefined ? @target = block_target.call : @target = target
|
7
|
+
end
|
8
|
+
|
9
|
+
def self.capture actual
|
10
|
+
self.redefine
|
11
|
+
actual.call
|
12
|
+
self.replace
|
13
|
+
@actual_matcher
|
14
|
+
end
|
15
|
+
|
16
|
+
class <<self
|
17
|
+
attr_writer :actual_matcher
|
18
|
+
end
|
19
|
+
|
20
|
+
def to matcher
|
21
|
+
match_populate 'should ', matcher
|
22
|
+
end
|
23
|
+
|
24
|
+
def to_not matcher
|
25
|
+
match_populate 'should not ', matcher
|
26
|
+
end
|
27
|
+
|
28
|
+
private
|
29
|
+
def match_populate verb, matcher
|
30
|
+
matcher.send :matches?, @target
|
31
|
+
self.class.actual_matcher = [verb,matcher]
|
32
|
+
end
|
33
|
+
|
34
|
+
def self.remove
|
35
|
+
@rspec_matchers.send :remove_method, :expect
|
36
|
+
end
|
37
|
+
|
38
|
+
def self.redefine
|
39
|
+
@rspec_matchers = ::RSpec::Matchers
|
40
|
+
@real_expect = @rspec_matchers.instance_method :expect
|
41
|
+
self.remove
|
42
|
+
expect_capture = self
|
43
|
+
@rspec_matchers.send(:define_method, :expect){ |target=:undefined, &block_target| expect_capture.new(target, block_target) }
|
44
|
+
end
|
45
|
+
|
46
|
+
def self.replace
|
47
|
+
self.remove
|
48
|
+
@rspec_matchers.send(:define_method, :expect, @real_expect)
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
module TarkaMatchers
|
2
|
+
module Helpers
|
3
|
+
module ActionDispatch
|
4
|
+
class RoutePopulator
|
5
|
+
def self.route_populate unpopulated_route, populated_route
|
6
|
+
converted_route = unpopulated_route.dup
|
7
|
+
converted_route.gsub!('(.:format)','')
|
8
|
+
|
9
|
+
if populated_route != converted_route
|
10
|
+
syncronizer = 0
|
11
|
+
unpopulated_route.scan /(?<=\/):\w+/ do |m|
|
12
|
+
start_index = $~.offset(0)[0] + syncronizer
|
13
|
+
break if start_index > populated_route.length
|
14
|
+
end_index = $~.offset(0)[1] + syncronizer
|
15
|
+
named_length = end_index - start_index
|
16
|
+
parameter = populated_route.match(/(?<=\/)\w+/, start_index).to_s
|
17
|
+
syncronizer += (named_length - parameter.length).abs
|
18
|
+
converted_route.slice! start_index..end_index-1
|
19
|
+
converted_route.insert start_index, parameter
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
converted_route
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|