Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test_cli.rb « test - github.com/mapsme/twine.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2786a1df612269fa435d82c9ec56f76b4b981d5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
require 'twine_test'

class CLITest < TwineTest
  def setup
    super

    @twine_file_path = File.join @output_dir, SecureRandom.uuid
    @input_path = File.join @output_dir, SecureRandom.uuid
    @input_dir = @output_dir
  end

  def parse(command)
    @options = Twine::CLI::parse command.split
  end

  class TestValidateTwineFile < CLITest
    def test_command
      parse "validate-twine-file #{@twine_file_path}"

      assert_equal 'validate-twine-file', @options[:command]
      assert_equal @twine_file_path, @options[:twine_file]
    end

    def test_pedantic
      parse "validate-twine-file #{@twine_file_path} --pedantic"
      assert @options[:pedantic]
    end

    def test_missing_parameter
      assert_raises Twine::Error do
        parse 'validate-twine-file'
      end
    end

    def test_extra_parameter
      assert_raises Twine::Error do
        parse 'validate-twine-file twine_file extra'
      end
    end
  end

  class TestGenerateLocalizationFile < CLITest
    def test_command
      parse "generate-localization-file #{@twine_file_path} #{@output_path}"

      assert_equal 'generate-localization-file', @options[:command]
      assert_equal @twine_file_path, @options[:twine_file]
      assert_equal @output_path, @options[:output_path]
    end

    def test_missing_parameter
      assert_raises Twine::Error do
        parse 'generate-localization-file twine_file'
      end
    end

    def test_validate
      parse "generate-localization-file #{@twine_file_path} #{@output_path} --validate"
      assert @options[:validate]
    end

    def test_extra_parameter
      assert_raises Twine::Error do
        parse 'generate-localization-file twine_file output extra'
      end
    end

    def test_only_allows_one_language
      assert_raises Twine::Error do
        parse "generate-localization-file twine_file output --lang en,fr"
      end
    end
  end

  class TestGenerateAllLocalizationFiles < CLITest
    def test_command
      parse "generate-all-localization-files #{@twine_file_path} #{@output_dir}"

      assert_equal 'generate-all-localization-files', @options[:command]
      assert_equal @twine_file_path, @options[:twine_file]
      assert_equal @output_dir, @options[:output_path]
    end

    def test_missing_parameter
      assert_raises Twine::Error do
        parse "generate-all-localization-files twine_file"
      end
    end

    def test_validate
      parse "generate-all-localization-files #{@twine_file_path} #{@output_dir} --validate"
      assert @options[:validate]
    end

    def test_extra_parameter
      assert_raises Twine::Error do
        parse "generate-all-localization-files twine_file output extra"
      end
    end
  end

  class TestConsumeLocalizationFile < CLITest
    def test_command
      parse "consume-localization-file #{@twine_file_path} #{@input_path}"

      assert_equal 'consume-localization-file', @options[:command]
      assert_equal @twine_file_path, @options[:twine_file]
      assert_equal @input_path, @options[:input_path]
    end

    def test_missing_parameter
      assert_raises Twine::Error do
        parse "consume-localization-file twine_file"
      end
    end

    def test_extra_parameter
      assert_raises Twine::Error do
        parse "consume-localization-file twine_file output extra"
      end
    end

    def test_only_allows_one_language
      assert_raises Twine::Error do
        parse "consume-localization-file twine_file output --lang en,fr"
      end
    end
  end

  class TestConsumeAllLocalizationFiles < CLITest
    def test_command
      parse "consume-all-localization-files #{@twine_file_path} #{@input_dir}"

      assert_equal 'consume-all-localization-files', @options[:command]
      assert_equal @twine_file_path, @options[:twine_file]
      assert_equal @input_dir, @options[:input_path]
    end

    def test_missing_parameter
      assert_raises Twine::Error do
        parse "consume-all-localization-files twine_file"
      end
    end

    def test_extra_parameter
      assert_raises Twine::Error do
        parse "consume-all-localization-files twine_file output extra"
      end
    end
  end

  class TestGenerateLocDrop < CLITest
    def test_command
      parse "generate-loc-drop #{@twine_file_path} #{@output_path} --format apple"

      assert_equal 'generate-loc-drop', @options[:command]
      assert_equal @twine_file_path, @options[:twine_file]
      assert_equal @output_path, @options[:output_path]
    end

    def test_missing_parameter
      assert_raises Twine::Error do
        parse "generate-loc-drop twine_file --format apple"
      end
    end

    def test_validate
      parse "generate-loc-drop #{@twine_file_path} #{@output_path} --format apple --validate"
      assert @options[:validate]
    end

    def test_extra_parameter
      assert_raises Twine::Error do
        parse "generate-loc-drop twine_file output extra --format apple"
      end
    end

    def test_format_needed
      assert_raises Twine::Error do
        parse "generate-loc-drop twine_file output"
      end
    end
  end

  class TestConsumeLocDrop < CLITest
    def test_command
      parse "consume-loc-drop #{@twine_file_path} #{@input_path}"

      assert_equal 'consume-loc-drop', @options[:command]
      assert_equal @twine_file_path, @options[:twine_file]
      assert_equal @input_path, @options[:input_path]
    end

    def test_missing_parameter
      assert_raises Twine::Error do
        parse "consume-loc-drop twine_file"
      end
    end

    def test_extra_parameter
      assert_raises Twine::Error do
        parse "consume-loc-drop twine_file input extra"
      end
    end
  end

  class TestParameters < CLITest
    def parse_with(parameter)
      parse 'validate-twine-file input.txt ' + parameter
    end

    def test_default_options
      parse_with ''
      expected = {command: 'validate-twine-file', twine_file: 'input.txt', include: :all}
      assert_equal expected, @options
    end

    def test_create_folders
      parse_with '--create-folders'
      assert @options[:create_folders]
    end

    def test_consume_all
      parse_with '--consume-all'
      assert @options[:consume_all]
    end

    def test_consume_comments
      parse_with '--consume-comments'
      assert @options[:consume_comments]
    end

    def test_untagged
      parse_with '--untagged'
      assert @options[:untagged]
    end

    def test_developer_language
      random_language = KNOWN_LANGUAGES.sample
      parse_with "--developer-lang #{random_language}"
      assert_equal random_language, @options[:developer_language]
    end

    def test_single_language
      random_language = KNOWN_LANGUAGES.sample
      parse_with "--lang #{random_language}"
      assert_equal [random_language], @options[:languages]
    end

    def test_multiple_languages
      random_languages = KNOWN_LANGUAGES.shuffle[0, 3]
      parse_with "--lang #{random_languages.join(',')}"
      assert_equal random_languages.sort, @options[:languages].sort
    end

    def test_single_tag
      random_tag = "tag#{rand(100)}"
      parse_with "--tags #{random_tag}"
      assert_equal [random_tag], @options[:tags]
    end

    def test_multiple_tags
      random_tags = ([nil] * 3).map { "tag#{rand(100)}" }
      parse_with "--tags #{random_tags.join(',')}"
      assert_equal random_tags.sort, @options[:tags].sort
    end

    def test_format
      random_format = Twine::Formatters.formatters.sample.format_name.downcase
      parse_with "--format #{random_format}"
      assert_equal random_format, @options[:format]
    end

    def test_include
      random_set = [:all, :translated, :untranslated].sample
      parse_with "--include #{random_set}"
      assert_equal random_set, @options[:include]
    end

    def test_output_path
      parse_with "--output-file #{@output_path}"
      assert_equal @output_path, @options[:output_path]
    end

    def test_file_name
      random_filename = "#{rand(10000)}"
      parse_with "--file-name #{random_filename}"
      assert_equal random_filename, @options[:file_name]
    end

    def test_encoding
      parse_with '--encoding UTF16'
      assert_equal 'UTF16', @options[:output_encoding]
    end
  end
end