robotag 2.0.0 → 3.0.0

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/robotag.rb +38 -17
  3. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dec985055f4c9d4c0433884d83032aa9da032146a59a834775e48a9887d10784
4
- data.tar.gz: 3f24cd962472659a3cbc99a6b4780e3df748eac943055cbd8b66288387cd65b1
3
+ metadata.gz: ab44b297b1fd2c5f003e7825deb734e12d46dc62470b02abd3da9feed0b9bdbc
4
+ data.tar.gz: ab1d7b1ddae29e276e481a7c72d957c1526c5cac46414ba604e30132a5983d7d
5
5
  SHA512:
6
- metadata.gz: 3f47d741e49ff2be4722de01b33eb5b410e459a5766ed4c543c25e828a1903447bcc438c4d087ab5f39a00841608ee85315cc7950cee75a829944524e418d4d6
7
- data.tar.gz: 1a72c50d795145710e075bde7e5e08c215ddcf148c3f3ea6de5a38ef993a1b3bc6414e8d686d691adb0ffc30c74ed5121b54214e07e9f768981f8dfe109fef10
6
+ metadata.gz: 2ea9fed578bce9a570ce0a526d0e5ec2c83d466a50eac068b5d95cdda7cdfb5cf3e741efe7ac011b6c9fc89b25c20496fd462fd02a2d431ac047ac69659d4919
7
+ data.tar.gz: f22e93f4f1dfc97ee5851795214a3f909cf285466f306cd32bd0fc59f05bf192c71ebe17b81df86fbdcfc4ca14e8fe6a85d8038df6a382784b186c369e042cfc
data/lib/robotag.rb CHANGED
@@ -36,35 +36,44 @@ class Robotag
36
36
  def tag_all_with(tag)
37
37
  warn('This script will potentially rewrite all of your feature files. Please be patient and remember to tip your source control system.') # rubocop:disable Metrics/LineLength
38
38
 
39
- # Analysis and output
40
- self.chain_state.map { |query_result| query_result[:self] }.each do |test|
41
- if (test.is_a?(CukeModeler::Scenario) || test.is_a?(CukeModeler::Outline))
42
- add_tag(test, tag)
43
- else
44
- raise("Unknown test type: #{test.class}")
45
- end
46
- end
39
+ analysis_and_output(tag, :add)
40
+ self
41
+ end
42
+
43
+ def remove_all(tag)
44
+ warn('This script will potentially rewrite all of your feature files. Please be patient and remember to tip your source control system.') # rubocop:disable Metrics/LineLength
45
+
46
+ analysis_and_output(tag, :remove)
47
47
  self
48
48
  end
49
49
 
50
- def add_tag(test, tag)
51
- return if has_tag?(test, tag)
50
+ def process_tag(test, tag, action)
51
+ if action == :add
52
+ return if has_tag?(test, tag)
53
+ elsif action == :remove
54
+ return unless has_tag?(test, tag)
55
+ end
52
56
 
53
- tag_test(test, tag)
57
+ modify_test_tag(test, tag, action)
54
58
  end
55
59
 
56
- def tag_test(test, tag)
60
+ def modify_test_tag(test, tag, action)
57
61
  feature_file = test.get_ancestor(:feature_file)
58
62
  file_path = feature_file.path
59
63
 
60
64
  tag_index = (test.source_line - 2)
61
65
 
62
66
  file_lines = if self.write_directives[file_path].nil?
63
- File.readlines(file_path)
64
- else
65
- self.write_directives[file_path].split("\n").map {|line| line + "\n"}
66
- end
67
- file_lines[tag_index] = "#{file_lines[tag_index].chomp} #{tag}\n"
67
+ File.readlines(file_path)
68
+ else
69
+ self.write_directives[file_path].split("\n").map { |line| line + "\n" }
70
+ end
71
+
72
+ if action == :add
73
+ file_lines[tag_index] = "#{file_lines[tag_index].chomp} #{tag}\n"
74
+ elsif action == :remove
75
+ file_lines[tag_index].delete!(tag)
76
+ end
68
77
 
69
78
  self.write_directives[file_path] = file_lines.join
70
79
 
@@ -100,4 +109,16 @@ class Robotag
100
109
  self.chain_state
101
110
  end
102
111
  end
112
+
113
+ private
114
+
115
+ def analysis_and_output(tag, action)
116
+ self.chain_state.map { |query_result| query_result[:self] }.each do |test|
117
+ if (test.is_a?(CukeModeler::Scenario) || test.is_a?(CukeModeler::Outline))
118
+ process_tag(test, tag, action)
119
+ else
120
+ raise("Unknown test type: #{test.class}")
121
+ end
122
+ end
123
+ end
103
124
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: robotag
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 3.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - David West
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-26 00:00:00.000000000 Z
11
+ date: 2023-05-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec