uttk 0.3.6.1 → 0.4.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (114) hide show
  1. data/BESTOF +13 -0
  2. data/ChangeLog +19 -0
  3. data/MATRIX +6 -0
  4. data/NEWS +34 -4
  5. data/PITFALLS +13 -0
  6. data/Rakefile +19 -2
  7. data/SPEC.gemspec +18 -0
  8. data/SPEC.yml +21 -7
  9. data/bin/getopts/uttk.rb +23 -10
  10. data/lib/uttk.rb +16 -12
  11. data/lib/uttk/dumpers/Mail.rb +41 -0
  12. data/lib/uttk/dumpers/Yaml.rb +2 -2
  13. data/lib/uttk/filters/KeepSkipBased.rb +1 -1
  14. data/lib/uttk/generators/templates/loader.rb +1 -1
  15. data/lib/uttk/generators/templates/strategy-command.rb +72 -0
  16. data/lib/uttk/generators/templates/strategy.rb +4 -3
  17. data/lib/uttk/generators/templates/unit_test.rb +1 -1
  18. data/lib/uttk/loaders/Loader.rb +1 -1
  19. data/lib/uttk/loaders/Ruby.rb +1 -1
  20. data/lib/uttk/loaders/Yaml.rb +2 -2
  21. data/lib/uttk/logger/section_node.rb +1 -1
  22. data/lib/uttk/logger/severity.rb +1 -1
  23. data/lib/uttk/logger/to_uttk_log.rb +2 -2
  24. data/lib/uttk/logger/verbosity.rb +1 -1
  25. data/lib/uttk/logger_factory.rb +1 -1
  26. data/lib/uttk/status.rb +1 -1
  27. data/lib/uttk/strategies/Abort.rb +1 -1
  28. data/lib/uttk/strategies/Assert.rb +1 -1
  29. data/lib/uttk/strategies/Authors.rb +2 -2
  30. data/lib/uttk/strategies/Bootstrap.rb +38 -11
  31. data/lib/uttk/strategies/Checkout.rb +3 -2
  32. data/lib/uttk/strategies/Clean.rb +1 -1
  33. data/lib/uttk/strategies/Collection.rb +3 -3
  34. data/lib/uttk/strategies/Command.rb +95 -0
  35. data/lib/uttk/strategies/Composite/contents_eval.rb +1 -1
  36. data/lib/uttk/strategies/Configure.rb +34 -25
  37. data/lib/uttk/strategies/Error.rb +1 -1
  38. data/lib/uttk/strategies/Fail.rb +1 -1
  39. data/lib/uttk/strategies/HostSelector.rb +143 -0
  40. data/lib/uttk/strategies/Import.rb +2 -2
  41. data/lib/uttk/strategies/Iterate.rb +1 -1
  42. data/lib/uttk/strategies/JUnit.rb +1 -1
  43. data/lib/uttk/strategies/Jump.rb +81 -0
  44. data/lib/uttk/strategies/Make.rb +28 -58
  45. data/lib/uttk/strategies/Package.rb +5 -6
  46. data/lib/uttk/strategies/PackageCollection.rb +1 -1
  47. data/lib/uttk/strategies/Pass.rb +1 -1
  48. data/lib/uttk/strategies/RUnit.rb +63 -49
  49. data/lib/uttk/strategies/SignalCmd.rb +1 -1
  50. data/lib/uttk/strategies/Sleep.rb +1 -1
  51. data/lib/uttk/strategies/SqlQuery.rb +1 -1
  52. data/lib/uttk/strategies/Strategy.rb +153 -3
  53. data/lib/uttk/strategies/SubCmd.rb +51 -31
  54. data/lib/uttk/strategies/Suite.rb +1 -1
  55. data/lib/uttk/strategies/Test.rb +1 -1
  56. data/lib/uttk/strategies/{ProbabilityThreshold.rb → Threshold.rb} +3 -3
  57. data/lib/uttk/streams.rb +1 -1
  58. data/lib/uttk/streams/Diff.rb +1 -1
  59. data/lib/uttk/streams/Stream.rb +1 -1
  60. data/lib/uttk/version_id.rb +1 -1
  61. data/lib/uttk/weights/WExpr.rb +1 -1
  62. data/lib/uttk/weights/WFloat.rb +1 -1
  63. data/lib/uttk/weights/WMin.rb +1 -1
  64. data/lib/uttk/weights/Weight.rb +1 -1
  65. data/lib/www/images/opentriangle.gif +0 -0
  66. data/lib/www/images/triangle.gif +0 -0
  67. data/lib/www/stylesheets/uttk.css +167 -0
  68. data/misc/expandtab.rb +1 -1
  69. data/test/examples/students/mini-lib.yml +1 -1
  70. data/test/fixtures/binaries/segv +0 -0
  71. data/test/functional/base.yml +29 -0
  72. data/test/functional/cat.yml +2 -2
  73. data/test/functional/cmd.yml +5 -0
  74. data/test/functional/command.yml +14 -0
  75. data/test/functional/diff.yml +2 -2
  76. data/test/functional/env_cmd.yml +3 -3
  77. data/test/functional/exit.yml +1 -1
  78. data/test/functional/host_selector.yml +30 -0
  79. data/test/functional/iterate.yml +31 -37
  80. data/test/functional/jump.yml +34 -0
  81. data/test/functional/pkg.yml +1 -1
  82. data/test/functional/{probability_threshold.yml → threshold.yml} +2 -2
  83. data/test/functional/timeout.yml +1 -1
  84. data/test/functional/wc.yml +2 -2
  85. data/test/unit/dumpers/mail_test.rb +46 -0
  86. data/test/unit/filters/keep_skip_based_test.rb +1 -1
  87. data/test/unit/filters/text_filter_test.rb +1 -1
  88. metadata +258 -253
  89. data/test/fixtures/demo/command-tutorial/steps/1/check.yml +0 -5
  90. data/test/fixtures/demo/command-tutorial/steps/1/pluralizer.rb +0 -10
  91. data/test/fixtures/demo/command-tutorial/steps/2/bad_check.yml +0 -7
  92. data/test/fixtures/demo/command-tutorial/steps/2/check.yml +0 -7
  93. data/test/fixtures/demo/command-tutorial/steps/2/pluralizer.rb +0 -10
  94. data/test/fixtures/demo/command-tutorial/steps/3.1/check.yml +0 -12
  95. data/test/fixtures/demo/command-tutorial/steps/3/check.yml +0 -14
  96. data/test/fixtures/demo/command-tutorial/steps/4.1/bird.txt +0 -1
  97. data/test/fixtures/demo/command-tutorial/steps/4.1/check.yml +0 -12
  98. data/test/fixtures/demo/command-tutorial/steps/4/check.yml +0 -12
  99. data/test/fixtures/demo/command-tutorial/steps/4/pluralizer.rb +0 -12
  100. data/test/fixtures/demo/command-tutorial/steps/5.1/bird.txt +0 -1
  101. data/test/fixtures/demo/command-tutorial/steps/5.1/check.yml +0 -17
  102. data/test/fixtures/demo/command-tutorial/steps/5.1/pluralizer.rb +0 -17
  103. data/test/fixtures/demo/command-tutorial/steps/5/bird.txt +0 -1
  104. data/test/fixtures/demo/command-tutorial/steps/5/check.yml +0 -16
  105. data/test/fixtures/demo/command-tutorial/steps/5/pluralizer.rb +0 -16
  106. data/test/fixtures/demo/command-tutorial/steps/6.1/bird.txt +0 -1
  107. data/test/fixtures/demo/command-tutorial/steps/6.1/check.yml +0 -22
  108. data/test/fixtures/demo/command-tutorial/steps/6.1/pluralizer.rb +0 -17
  109. data/test/fixtures/demo/command-tutorial/steps/6/bird.txt +0 -1
  110. data/test/fixtures/demo/command-tutorial/steps/6/check.yml +0 -21
  111. data/test/fixtures/demo/command-tutorial/steps/6/pluralizer.rb +0 -17
  112. data/test/fixtures/demo/command-tutorial/steps/7/bird.txt +0 -1
  113. data/test/fixtures/demo/command-tutorial/steps/7/check.yml +0 -22
  114. data/test/fixtures/demo/command-tutorial/steps/7/pluralizer.rb +0 -17
@@ -71,13 +71,41 @@ Test the Iterate strategy: !S::Suite
71
71
 
72
72
  - Iterate can deal with many structures: !S::Suite
73
73
  symbols:
74
- results: []
74
+ ref_results:
75
+ - "[1]"
76
+ - "[3]"
77
+ - "[7]"
78
+ - "[1042]"
79
+ - "[\"p\"]"
80
+ - "[\"q\"]"
81
+ - "[\"r\"]"
82
+ - !re "\[.*/fixtures/ball/(joe_i|qux_j|foo_s|bar_p)-mini-lib\.tar\.bz2\]"
83
+ - !re "\[.*/fixtures/ball/(joe_i|qux_j|foo_s|bar_p)-mini-lib\.tar\.bz2\]"
84
+ - !re "\[.*/fixtures/ball/(joe_i|qux_j|foo_s|bar_p)-mini-lib\.tar\.bz2\]"
85
+ - !re "\[.*/fixtures/ball/(joe_i|qux_j|foo_s|bar_p)-mini-lib\.tar\.bz2\]"
86
+ - !re "\[.*/fixtures/ball/(joe_i|qux_j|foo_s|bar_p)-mini-lib\.tar\.bz2, \"\1\"\]"
87
+ - !re "\[.*/fixtures/ball/(joe_i|qux_j|foo_s|bar_p)-mini-lib\.tar\.bz2, \"\1\"\]"
88
+ - !re "\[.*/fixtures/ball/(joe_i|qux_j|foo_s|bar_p)-mini-lib\.tar\.bz2, \"\1\"\]"
89
+ - !re "\[.*/fixtures/ball/(joe_i|qux_j|foo_s|bar_p)-mini-lib\.tar\.bz2, \"\1\"\]"
90
+ - !re "\[\"(foo|qux|bar)\", \"(bar|foo|baz)\"\]"
91
+ - !re "\[\"(foo|qux|bar)\", \"(bar|foo|baz)\"\]"
92
+ - !re "\[\"(foo|qux|bar)\", \"(bar|foo|baz)\"\]"
93
+ - "[2]"
94
+ - "[2]"
95
+ - "[2]"
75
96
  attributes: !S::Iterate
76
97
  iter: it
77
98
  test:
78
- Iterate over many structures <<it:i>>: !S::Block
99
+ Iterate over many structures <<it:i>>: !S::Assert
79
100
  test: |
80
- @symtbl[:results] << '<<*it>>'
101
+ ref = @symtbl[:ref_results].shift
102
+ my = '<<*it>>'
103
+ case ref
104
+ when Regexp
105
+ assert_match(ref, my)
106
+ else
107
+ assert_equal(ref, my)
108
+ end
81
109
  contents:
82
110
  - Iterate over arrays:
83
111
  over: [1, 3, 7, 1042]
@@ -95,37 +123,3 @@ Test the Iterate strategy: !S::Suite
95
123
  - Iterate over a Ruby value:
96
124
  over: !ruby |
97
125
  [2] * 3
98
-
99
- - Check the results contents: !S::Assert
100
- symbols:
101
- ref_results:
102
- - "[1]"
103
- - "[3]"
104
- - "[7]"
105
- - "[1042]"
106
- - "[\"p\"]"
107
- - "[\"q\"]"
108
- - "[\"r\"]"
109
- - !re ".*/fixtures/ball/joe_i-mini-lib\.tar\.bz2"
110
- - !re ".*/fixtures/ball/qux_j-mini-lib\.tar\.bz2"
111
- - !re ".*/fixtures/ball/foo_s-mini-lib\.tar\.bz2"
112
- - !re ".*/fixtures/ball/bar_p-mini-lib\.tar\.bz2"
113
- - !re ".*/fixtures/ball/joe_i-mini-lib\.tar\.bz2"
114
- - !re ".*/fixtures/ball/qux_j-mini-lib\.tar\.bz2"
115
- - !re ".*/fixtures/ball/foo_s-mini-lib\.tar\.bz2"
116
- - !re ".*/fixtures/ball/bar_p-mini-lib\.tar\.bz2"
117
- - !re "\[:(foo|qux|bar), \"(bar|foo|baz)\"\]"
118
- - !re "\[:(foo|qux|bar), \"(bar|foo|baz)\"\]"
119
- - !re "\[:(foo|qux|bar), \"(bar|foo|baz)\"\]"
120
- - "[2]"
121
- - "[2]"
122
- - "[2]"
123
- test: |
124
- for ref, my in @symtbl[:ref_results].zip @symtbl[:results] do
125
- case ref
126
- when Regexp
127
- assert_match(ref, my)
128
- else
129
- assert_equal(ref, my)
130
- end
131
- end
@@ -0,0 +1,34 @@
1
+ --- !S::Pass {}
2
+
3
+ ---
4
+ # FIXME
5
+ Test the Jump strategy: !S::Suite
6
+ contents:
7
+ - jump and pass: !S::RMatch
8
+ test: !S::Jump
9
+ to: !url ssh://localhost
10
+ test: !S::Pass {}
11
+ match:
12
+ - //status/PASS
13
+
14
+ - jump and base: !S::RMatch
15
+ test: !S::Jump
16
+ to: !url ssh://localhost
17
+ test: !S::Import
18
+ import: <<master_pwd>>/base.yml # This works because we jump on localhost
19
+ match:
20
+ - //status/PASS
21
+
22
+ # - bad test 1: !S::RMatch
23
+ # test: !S::Jump
24
+ # # ...
25
+ # match:
26
+ # - // # ...
27
+ # - //
28
+ # - //
29
+ # dont_match:
30
+ # - // # ...
31
+ # - //
32
+ # - //
33
+ #
34
+ # - # ...
@@ -6,7 +6,7 @@ Test the Package strategy: !S::Suite
6
6
  - Test the foo package:
7
7
  url: file://<<pwd>>/../fixtures/package/pkg_foo.tar.gz
8
8
  test:
9
- Test yo: !S::Cmd
9
+ Test yo: !S::Command
10
10
  dir: '<<extract_dir>>'
11
11
  command: ./foo.sh
12
12
  output: |
@@ -1,8 +1,8 @@
1
1
  ---
2
2
 
3
- Test the ProbabilityThreshold strategy: !S::Suite
3
+ Test the Threshold strategy: !S::Suite
4
4
 
5
- attributes: !S::ProbabilityThreshold
5
+ attributes: !S::Threshold
6
6
  test:
7
7
  Simple test (0.625): !S::Fail
8
8
  value: 0.625
@@ -2,7 +2,7 @@
2
2
 
3
3
  Test timeout option (timeout.yml): !S::Suite
4
4
 
5
- attributes: !S::Cmd
5
+ attributes: !S::Command
6
6
  command: sleep
7
7
  exit: 0
8
8
  timeout: 1
@@ -1,8 +1,8 @@
1
1
  ---
2
2
 
3
3
  Test the wc command (wc.yml): !S::Suite
4
- attributes: !S::Cmd
5
- command: "wc -c"
4
+ attributes: !S::Command
5
+ command: wc -c
6
6
  exit: 0
7
7
  contents:
8
8
  - good foo:
@@ -0,0 +1,46 @@
1
+ # Author:: Nicolas Pouillard <ertai@lrde.epita.fr>.
2
+ # Copyright:: Copyright (c) 2005 Uttk Team. All rights reserved.
3
+ # License:: LGPL
4
+ # Revision:: $Id: /w/fey/uttk/trunk/test/unit/dumpers/mail_test.rb 29681 2006-09-13T07:37:45.036396Z ertai $
5
+
6
+ test_section __FILE__ do
7
+
8
+ module Uttk
9
+
10
+ module Dumpers
11
+
12
+ class MailTest < ::Test::Unit::TestCase
13
+
14
+ #
15
+ # Methods
16
+ #
17
+
18
+ def setup
19
+ super
20
+ # ...
21
+ end
22
+
23
+ def teardown
24
+ super
25
+ # ...
26
+ end
27
+
28
+ #
29
+ # Tests
30
+ #
31
+
32
+ def test_xxx
33
+ # ...
34
+ end
35
+
36
+ def test_yyy
37
+ # ...
38
+ end
39
+
40
+ end # class MailTest
41
+
42
+ end # module Dumpers
43
+
44
+ end # module Uttk
45
+
46
+ end
@@ -1,7 +1,7 @@
1
1
  # Author:: Nicolas Pouillard <ertai@lrde.epita.fr>.
2
2
  # Copyright:: Copyright (c) 2005 Uttk Team. All rights reserved.
3
3
  # License:: LGPL
4
- # Revision:: $Id: /fey/uttk/trunk/test/unit/filters/keep_skip_based_test.rb 8778 2005-09-26T04:34:48.103938Z ertai $
4
+ # Revision:: $Id: /w/fey/uttk/trunk/test/unit/filters/keep_skip_based_test.rb 8778 2005-09-26T04:34:48.103938Z ertai $
5
5
 
6
6
  test_section __FILE__ do
7
7
 
@@ -1,7 +1,7 @@
1
1
  # Author:: Nicolas Pouillard <ertai@lrde.epita.fr>.
2
2
  # Copyright:: Copyright (c) 2005 Uttk Team. All rights reserved.
3
3
  # License:: LGPL
4
- # Revision:: $Id: /fey/uttk/trunk/test/unit/filters/text_filter_test.rb 8778 2005-09-26T04:34:48.103938Z ertai $
4
+ # Revision:: $Id: /w/fey/uttk/trunk/test/unit/filters/text_filter_test.rb 8778 2005-09-26T04:34:48.103938Z ertai $
5
5
 
6
6
  test_section __FILE__ do
7
7
 
metadata CHANGED
@@ -1,10 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.8.11
2
+ rubygems_version: 0.9.0
3
3
  specification_version: 1
4
4
  name: uttk
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.3.6.1
7
- date: 2006-03-11 00:00:00 +01:00
6
+ version: 0.4.5.0
7
+ date: 2007-01-14 00:00:00 +01:00
8
8
  summary: Uttk is an extensible framework for dynamic testing.
9
9
  require_paths:
10
10
  - lib
@@ -30,6 +30,7 @@ required_ruby_version: !ruby/object:Gem::Version::Requirement
30
30
  platform: ruby
31
31
  signing_key:
32
32
  cert_chain:
33
+ post_install_message:
33
34
  authors:
34
35
  - Vincent Cuissard
35
36
  - "Nicolas Despr\xE8s"
@@ -37,334 +38,311 @@ authors:
37
38
  - Jerome Pouiller
38
39
  - Marco Tessari
39
40
  files:
40
- - bin/uttk
41
41
  - bin/getopts
42
+ - bin/uttk
42
43
  - bin/uttk-unit
43
44
  - bin/getopts/uttk.rb
44
45
  - lib/uttk.rb
45
- - lib/uttk/logger_factory.rb
46
- - lib/uttk/logger.rb
47
46
  - lib/uttk/filters.rb
48
- - lib/uttk/version_id.rb
49
- - lib/uttk/streams.rb
47
+ - lib/uttk/logger.rb
48
+ - lib/uttk/logger_factory.rb
50
49
  - lib/uttk/status.rb
50
+ - lib/uttk/streams.rb
51
+ - lib/uttk/version_id.rb
51
52
  - lib/uttk/weights.rb
52
- - lib/uttk/path_filters/RemoveTypes.rb
53
- - lib/uttk/path_filters/ColorStatus.rb
54
- - lib/uttk/path_filters/PathFilter.rb
55
- - lib/uttk/dumpers/Dumper.rb
56
- - lib/uttk/dumpers/Path.rb
53
+ - lib/uttk/dumpers/Basic.rb
57
54
  - lib/uttk/dumpers/BasicColor.rb
55
+ - lib/uttk/dumpers/Dumper.rb
58
56
  - lib/uttk/dumpers/Html.rb
57
+ - lib/uttk/dumpers/Mail.rb
58
+ - lib/uttk/dumpers/Path.rb
59
59
  - lib/uttk/dumpers/Xml.rb
60
60
  - lib/uttk/dumpers/Yaml.rb
61
- - lib/uttk/dumpers/Basic.rb
62
- - lib/uttk/strategies/Iterate.rb
63
- - lib/uttk/strategies/Cmd.rb
64
- - lib/uttk/strategies/KillAll.rb
65
- - lib/uttk/strategies/Checkout.rb
66
- - lib/uttk/strategies/Pass.rb
67
- - lib/uttk/strategies/Abort.rb
68
- - lib/uttk/strategies/Block.rb
69
- - lib/uttk/strategies/Compile.rb
70
- - lib/uttk/strategies/RMatch.rb
71
- - lib/uttk/strategies/Sleep.rb
72
- - lib/uttk/strategies/Strategy.rb
73
- - lib/uttk/strategies/Pool.rb
74
- - lib/uttk/strategies/IOBased.rb
75
- - lib/uttk/strategies/Authors.rb
76
- - lib/uttk/strategies/RUnit.rb
77
- - lib/uttk/strategies/Import.rb
78
- - lib/uttk/strategies/Composite.rb
79
- - lib/uttk/strategies/Proxy.rb
80
- - lib/uttk/strategies/SubCmd.rb
81
- - lib/uttk/strategies/SqlQuery.rb
82
- - lib/uttk/strategies/JUnit.rb
83
- - lib/uttk/strategies/Clean.rb
84
- - lib/uttk/strategies/Fail.rb
85
- - lib/uttk/strategies/Make.rb
86
- - lib/uttk/strategies/Suite.rb
87
- - lib/uttk/strategies/SignalCmd.rb
88
- - lib/uttk/strategies/Package.rb
89
- - lib/uttk/strategies/Test.rb
90
- - lib/uttk/strategies/ProbabilityThreshold.rb
91
- - lib/uttk/strategies/Stub.rb
92
- - lib/uttk/strategies/Configure.rb
93
- - lib/uttk/strategies/PackageCollection.rb
94
- - lib/uttk/strategies/Collection.rb
95
- - lib/uttk/strategies/CmdBase.rb
96
- - lib/uttk/strategies/Error.rb
97
- - lib/uttk/strategies/Bootstrap.rb
98
- - lib/uttk/strategies/Assert.rb
99
- - lib/uttk/strategies/Composite/contents_eval.rb
100
- - lib/uttk/loaders/Loader.rb
101
- - lib/uttk/loaders/Yaml.rb
102
- - lib/uttk/loaders/Ruby.rb
61
+ - lib/uttk/filters/Buffer.rb
103
62
  - lib/uttk/filters/Compact.rb
104
- - lib/uttk/filters/JustStatus.rb
105
- - lib/uttk/filters/Id.rb
106
- - lib/uttk/filters/TextFilter.rb
107
- - lib/uttk/filters/DefaultColor.rb
108
- - lib/uttk/filters/NodeCut.rb
109
63
  - lib/uttk/filters/Default.rb
110
- - lib/uttk/filters/RPathFilter.rb
111
- - lib/uttk/filters/Buffer.rb
64
+ - lib/uttk/filters/DefaultColor.rb
112
65
  - lib/uttk/filters/Filter.rb
66
+ - lib/uttk/filters/Id.rb
67
+ - lib/uttk/filters/JustStatus.rb
113
68
  - lib/uttk/filters/KeepSkipBased.rb
69
+ - lib/uttk/filters/NodeCut.rb
70
+ - lib/uttk/filters/RPathFilter.rb
114
71
  - lib/uttk/filters/Saver.rb
115
- - lib/uttk/streams/Diff.rb
116
- - lib/uttk/streams/Stream.rb
117
- - lib/uttk/streams/HexaDiff.rb
118
- - lib/uttk/logger/severity.rb
119
- - lib/uttk/logger/section_node.rb
120
- - lib/uttk/logger/backend.rb
121
- - lib/uttk/logger/verbosity.rb
122
- - lib/uttk/logger/path.rb
123
- - lib/uttk/logger/to_uttk_log.rb
124
- - lib/uttk/generators/path_filter_generator.rb
125
- - lib/uttk/generators/loader_generator.rb
126
- - lib/uttk/generators/generator.rb
72
+ - lib/uttk/filters/TextFilter.rb
127
73
  - lib/uttk/generators/dumper_generator.rb
128
- - lib/uttk/generators/generator_generator.rb
129
74
  - lib/uttk/generators/filter_generator.rb
75
+ - lib/uttk/generators/generator.rb
76
+ - lib/uttk/generators/generator_generator.rb
77
+ - lib/uttk/generators/loader_generator.rb
78
+ - lib/uttk/generators/path_filter_generator.rb
130
79
  - lib/uttk/generators/strategy_generator.rb
80
+ - lib/uttk/generators/templates/dumper.rb
131
81
  - lib/uttk/generators/templates/filter.rb
132
82
  - lib/uttk/generators/templates/generator.rb
133
83
  - lib/uttk/generators/templates/loader.rb
134
- - lib/uttk/generators/templates/dumper.rb
135
- - lib/uttk/generators/templates/unit_test.rb
136
84
  - lib/uttk/generators/templates/path_filter.rb
85
+ - lib/uttk/generators/templates/strategy-command.rb
137
86
  - lib/uttk/generators/templates/strategy.rb
87
+ - lib/uttk/generators/templates/unit_test.rb
88
+ - lib/uttk/loaders/Loader.rb
89
+ - lib/uttk/loaders/Ruby.rb
90
+ - lib/uttk/loaders/Yaml.rb
91
+ - lib/uttk/logger/backend.rb
92
+ - lib/uttk/logger/path.rb
93
+ - lib/uttk/logger/section_node.rb
94
+ - lib/uttk/logger/severity.rb
95
+ - lib/uttk/logger/to_uttk_log.rb
96
+ - lib/uttk/logger/verbosity.rb
97
+ - lib/uttk/path_filters/ColorStatus.rb
98
+ - lib/uttk/path_filters/PathFilter.rb
99
+ - lib/uttk/path_filters/RemoveTypes.rb
100
+ - lib/uttk/strategies/Abort.rb
101
+ - lib/uttk/strategies/Assert.rb
102
+ - lib/uttk/strategies/Authors.rb
103
+ - lib/uttk/strategies/Block.rb
104
+ - lib/uttk/strategies/Bootstrap.rb
105
+ - lib/uttk/strategies/Checkout.rb
106
+ - lib/uttk/strategies/Clean.rb
107
+ - lib/uttk/strategies/Cmd.rb
108
+ - lib/uttk/strategies/CmdBase.rb
109
+ - lib/uttk/strategies/Collection.rb
110
+ - lib/uttk/strategies/Command.rb
111
+ - lib/uttk/strategies/Compile.rb
112
+ - lib/uttk/strategies/Composite.rb
113
+ - lib/uttk/strategies/Configure.rb
114
+ - lib/uttk/strategies/Error.rb
115
+ - lib/uttk/strategies/Fail.rb
116
+ - lib/uttk/strategies/HostSelector.rb
117
+ - lib/uttk/strategies/Import.rb
118
+ - lib/uttk/strategies/IOBased.rb
119
+ - lib/uttk/strategies/Iterate.rb
120
+ - lib/uttk/strategies/Jump.rb
121
+ - lib/uttk/strategies/JUnit.rb
122
+ - lib/uttk/strategies/KillAll.rb
123
+ - lib/uttk/strategies/Make.rb
124
+ - lib/uttk/strategies/Package.rb
125
+ - lib/uttk/strategies/PackageCollection.rb
126
+ - lib/uttk/strategies/Pass.rb
127
+ - lib/uttk/strategies/Pool.rb
128
+ - lib/uttk/strategies/Proxy.rb
129
+ - lib/uttk/strategies/RMatch.rb
130
+ - lib/uttk/strategies/RUnit.rb
131
+ - lib/uttk/strategies/SignalCmd.rb
132
+ - lib/uttk/strategies/Sleep.rb
133
+ - lib/uttk/strategies/SqlQuery.rb
134
+ - lib/uttk/strategies/Strategy.rb
135
+ - lib/uttk/strategies/Stub.rb
136
+ - lib/uttk/strategies/SubCmd.rb
137
+ - lib/uttk/strategies/Suite.rb
138
+ - lib/uttk/strategies/Test.rb
139
+ - lib/uttk/strategies/Threshold.rb
140
+ - lib/uttk/strategies/Composite/contents_eval.rb
141
+ - lib/uttk/streams/Diff.rb
142
+ - lib/uttk/streams/HexaDiff.rb
143
+ - lib/uttk/streams/Stream.rb
144
+ - lib/uttk/weights/Weight.rb
138
145
  - lib/uttk/weights/WExpr.rb
139
146
  - lib/uttk/weights/WFloat.rb
140
- - lib/uttk/weights/Weight.rb
141
147
  - lib/uttk/weights/WMin.rb
142
148
  - lib/uttk/generators/templates/strategy.yml
143
149
  - lib/www/javascripts/uttk.js
150
+ - lib/www/stylesheets/uttk.css
151
+ - lib/www/images/opentriangle.gif
152
+ - lib/www/images/triangle.gif
153
+ - test/examples
154
+ - test/examples-suite.yml
155
+ - test/fixtures
156
+ - test/functional
157
+ - test/functional-suite.yml
144
158
  - test/pkg
159
+ - test/pkg-suite.yml
145
160
  - test/pool
161
+ - test/pool-suite.yml
146
162
  - test/ruby
163
+ - test/ruby-suite.rb
164
+ - test/ruby-suite.yml
147
165
  - test/unit
148
166
  - test/unit-suite.yml
149
- - test/examples-suite.yml
150
- - test/functional-suite.yml
151
- - test/uttk-distcheck.yml
152
- - test/functional
153
- - test/ruby-suite.yml
154
- - test/fixtures
155
- - test/pool-suite.yml
156
- - test/examples
157
- - test/ruby-suite.rb
158
167
  - test/uttk-check.yml
159
- - test/pkg-suite.yml
160
- - test/pkg/cmdline.yml
161
- - test/pool/pool.yml
162
- - test/pool/base.yml
163
- - test/ruby/iterate.rb
164
- - test/ruby/wc.rb
165
- - test/ruby/base.rb
166
- - test/unit/logger_test.rb
167
- - test/unit/filters_test.rb
168
- - test/unit/dumpers
169
- - test/unit/strategies
170
- - test/unit/loaders
171
- - test/unit/filters
172
- - test/unit/logger
173
- - test/unit/dumpers/path_test.rb
174
- - test/unit/dumpers/xml_test.rb
175
- - test/unit/dumpers/yaml_test.rb
176
- - test/unit/strategies/suite_test.rb
177
- - test/unit/filters/node_cut_test.rb
178
- - test/unit/filters/rpath_filter_test.rb
179
- - test/unit/filters/buffer_test.rb
180
- - test/unit/filters/keep_skip_based_test.rb
181
- - test/unit/filters/text_filter_test.rb
182
- - test/unit/logger/to_uttk_log_test.rb
183
- - test/unit/logger/section_node_test.rb
184
- - test/unit/logger/severity_test.rb
185
- - test/unit/logger/verbosity_test.rb
186
- - test/functional/diff.yml
187
- - test/functional/rmatch.yml
188
- - test/functional/probability_threshold.yml
189
- - test/functional/test.yml
190
- - test/functional/fatal.yml
191
- - test/functional/hexa-diff.yml
192
- - test/functional/killall.yml
193
- - test/functional/glob.yml
194
- - test/functional/env_cmd.yml
195
- - test/functional/sub.yml
196
- - test/functional/timeout.yml
197
- - test/functional/author.yml
198
- - test/functional/r_unit.yml
199
- - test/functional/import.yml
200
- - test/functional/iterate.yml
201
- - test/functional/base_pool.yml
202
- - test/functional/wc.yml
203
- - test/functional/signal_cmd.yml
204
- - test/functional/cat.yml
205
- - test/functional/pkg.yml
206
- - test/functional/base.yml
207
- - test/functional/exit.yml
208
- - test/functional/weight.yml
209
- - test/functional/block.yml
210
- - test/functional/cmd.yml
211
- - test/fixtures/binaries
168
+ - test/uttk-distcheck.yml
169
+ - test/examples/basic.rb
170
+ - test/examples/basic.yml
171
+ - test/examples/cache
172
+ - test/examples/README
173
+ - test/examples/sql
174
+ - test/examples/students
175
+ - test/examples/students-suite.yml
176
+ - test/examples/cache/cache_and_fatal.yml
177
+ - test/examples/cache/simple.yml
178
+ - test/examples/sql/basic.yml
179
+ - test/examples/students/ball.yml
180
+ - test/examples/students/glob_stud.yml
181
+ - test/examples/students/mini-lib.yml
182
+ - test/examples/students/pool_stud.yml
183
+ - test/examples/students/stud.yml
212
184
  - test/fixtures/ball
185
+ - test/fixtures/binaries
213
186
  - test/fixtures/demo
214
187
  - test/fixtures/java
215
- - test/fixtures/text
216
- - test/fixtures/unit
217
188
  - test/fixtures/mini-lib
218
189
  - test/fixtures/package
219
- - test/fixtures/binaries/segv
220
- - test/fixtures/binaries/segv.rb
221
- - test/fixtures/binaries/segv.c
222
- - test/fixtures/ball/joe-exit.tar.bz2
223
- - test/fixtures/ball/Makefile
224
- - test/fixtures/ball/qux_j-mini-lib
225
- - test/fixtures/ball/joe_i-mini-lib.tar.bz2
226
- - test/fixtures/ball/hello
190
+ - test/fixtures/text
191
+ - test/fixtures/unit
192
+ - test/fixtures/ball/20040804-exam_a1-zapngo-tessar_m.tar.gz
227
193
  - test/fixtures/ball/bar_p-mini-lib
194
+ - test/fixtures/ball/bar_p-mini-lib.tar.bz2
195
+ - test/fixtures/ball/foo_s-mini-lib
196
+ - test/fixtures/ball/foo_s-mini-lib.tar.bz2
197
+ - test/fixtures/ball/hello
228
198
  - test/fixtures/ball/hello.tar.bz2
199
+ - test/fixtures/ball/hello.tar.gz
229
200
  - test/fixtures/ball/jack-exit
230
201
  - test/fixtures/ball/jack-exit.tar.bz2
231
- - test/fixtures/ball/john-exit
232
202
  - test/fixtures/ball/joe-exit
233
- - test/fixtures/ball/qux_j-mini-lib.tar.bz2
234
- - test/fixtures/ball/foo_s-mini-lib.tar.bz2
235
- - test/fixtures/ball/foo_s-mini-lib
236
- - test/fixtures/ball/hello.tar.gz
203
+ - test/fixtures/ball/joe-exit.tar.bz2
237
204
  - test/fixtures/ball/joe_i-mini-lib
205
+ - test/fixtures/ball/joe_i-mini-lib.tar.bz2
206
+ - test/fixtures/ball/john-exit
238
207
  - test/fixtures/ball/john-exit.tar.bz2
239
- - test/fixtures/ball/20040804-exam_a1-zapngo-tessar_m.tar.gz
240
- - test/fixtures/ball/bar_p-mini-lib.tar.bz2
241
- - test/fixtures/ball/qux_j-mini-lib/Makefile
242
- - test/fixtures/ball/qux_j-mini-lib/my_strlen.c
243
- - test/fixtures/ball/hello/Makefile
244
- - test/fixtures/ball/hello/hello.c
208
+ - test/fixtures/ball/Makefile
209
+ - test/fixtures/ball/qux_j-mini-lib
210
+ - test/fixtures/ball/qux_j-mini-lib.tar.bz2
245
211
  - test/fixtures/ball/bar_p-mini-lib/Makefile
246
212
  - test/fixtures/ball/bar_p-mini-lib/my_strlen.c
247
- - test/fixtures/ball/jack-exit/Makefile
248
- - test/fixtures/ball/jack-exit/exit.c
249
- - test/fixtures/ball/john-exit/Makefile
250
- - test/fixtures/ball/john-exit/exit.c
251
- - test/fixtures/ball/joe-exit/Makefile
252
- - test/fixtures/ball/joe-exit/exit.c
253
- - test/fixtures/ball/foo_s-mini-lib/Makefile
254
213
  - test/fixtures/ball/foo_s-mini-lib/configure
214
+ - test/fixtures/ball/foo_s-mini-lib/Makefile
255
215
  - test/fixtures/ball/foo_s-mini-lib/my_strlen.c
256
- - test/fixtures/ball/joe_i-mini-lib/Makefile
216
+ - test/fixtures/ball/hello/hello.c
217
+ - test/fixtures/ball/hello/Makefile
218
+ - test/fixtures/ball/jack-exit/exit.c
219
+ - test/fixtures/ball/jack-exit/Makefile
220
+ - test/fixtures/ball/joe-exit/exit.c
221
+ - test/fixtures/ball/joe-exit/Makefile
257
222
  - test/fixtures/ball/joe_i-mini-lib/configure
223
+ - test/fixtures/ball/joe_i-mini-lib/Makefile
258
224
  - test/fixtures/ball/joe_i-mini-lib/my_strlen.c
225
+ - test/fixtures/ball/john-exit/exit.c
226
+ - test/fixtures/ball/john-exit/Makefile
227
+ - test/fixtures/ball/qux_j-mini-lib/Makefile
228
+ - test/fixtures/ball/qux_j-mini-lib/my_strlen.c
229
+ - test/fixtures/binaries/segv
230
+ - test/fixtures/binaries/segv.c
231
+ - test/fixtures/binaries/segv.rb
259
232
  - test/fixtures/demo/filter-tutorial
260
- - test/fixtures/demo/command-tutorial
261
- - test/fixtures/demo/filter-tutorial/pluralizer.rb
262
- - test/fixtures/demo/filter-tutorial/filters
263
233
  - test/fixtures/demo/filter-tutorial/check.yml
234
+ - test/fixtures/demo/filter-tutorial/filters
235
+ - test/fixtures/demo/filter-tutorial/pluralizer.rb
264
236
  - test/fixtures/demo/filter-tutorial/filters/CutSkip100.rb
265
- - test/fixtures/demo/command-tutorial/steps
266
- - test/fixtures/demo/command-tutorial/steps/1
267
- - test/fixtures/demo/command-tutorial/steps/2
268
- - test/fixtures/demo/command-tutorial/steps/3
269
- - test/fixtures/demo/command-tutorial/steps/4
270
- - test/fixtures/demo/command-tutorial/steps/5
271
- - test/fixtures/demo/command-tutorial/steps/6
272
- - test/fixtures/demo/command-tutorial/steps/7
273
- - test/fixtures/demo/command-tutorial/steps/3.1
274
- - test/fixtures/demo/command-tutorial/steps/4.1
275
- - test/fixtures/demo/command-tutorial/steps/5.1
276
- - test/fixtures/demo/command-tutorial/steps/6.1
277
- - test/fixtures/demo/command-tutorial/steps/1/pluralizer.rb
278
- - test/fixtures/demo/command-tutorial/steps/1/check.yml
279
- - test/fixtures/demo/command-tutorial/steps/2/bad_check.yml
280
- - test/fixtures/demo/command-tutorial/steps/2/pluralizer.rb
281
- - test/fixtures/demo/command-tutorial/steps/2/check.yml
282
- - test/fixtures/demo/command-tutorial/steps/3/check.yml
283
- - test/fixtures/demo/command-tutorial/steps/4/pluralizer.rb
284
- - test/fixtures/demo/command-tutorial/steps/4/check.yml
285
- - test/fixtures/demo/command-tutorial/steps/5/bird.txt
286
- - test/fixtures/demo/command-tutorial/steps/5/pluralizer.rb
287
- - test/fixtures/demo/command-tutorial/steps/5/check.yml
288
- - test/fixtures/demo/command-tutorial/steps/6/bird.txt
289
- - test/fixtures/demo/command-tutorial/steps/6/pluralizer.rb
290
- - test/fixtures/demo/command-tutorial/steps/6/check.yml
291
- - test/fixtures/demo/command-tutorial/steps/7/bird.txt
292
- - test/fixtures/demo/command-tutorial/steps/7/pluralizer.rb
293
- - test/fixtures/demo/command-tutorial/steps/7/check.yml
294
- - test/fixtures/demo/command-tutorial/steps/3.1/check.yml
295
- - test/fixtures/demo/command-tutorial/steps/4.1/bird.txt
296
- - test/fixtures/demo/command-tutorial/steps/4.1/check.yml
297
- - test/fixtures/demo/command-tutorial/steps/5.1/bird.txt
298
- - test/fixtures/demo/command-tutorial/steps/5.1/pluralizer.rb
299
- - test/fixtures/demo/command-tutorial/steps/5.1/check.yml
300
- - test/fixtures/demo/command-tutorial/steps/6.1/bird.txt
301
- - test/fixtures/demo/command-tutorial/steps/6.1/pluralizer.rb
302
- - test/fixtures/demo/command-tutorial/steps/6.1/check.yml
303
237
  - test/fixtures/java/unit
238
+ - test/fixtures/java/unit/build.sh
239
+ - test/fixtures/java/unit/multibar.yml
304
240
  - test/fixtures/java/unit/multifoo.yml
305
241
  - test/fixtures/java/unit/MultiRight
242
+ - test/fixtures/java/unit/multiright.yml
306
243
  - test/fixtures/java/unit/simple_exception.yml
307
- - test/fixtures/java/unit/multibar.yml
308
244
  - test/fixtures/java/unit/SimpleException
309
- - test/fixtures/java/unit/multiright.yml
310
- - test/fixtures/java/unit/build.sh
311
- - test/fixtures/java/unit/MultiRight/Foo
312
245
  - test/fixtures/java/unit/MultiRight/bar
313
- - test/fixtures/java/unit/MultiRight/MultiRightTest.java
314
246
  - test/fixtures/java/unit/MultiRight/build.sh
247
+ - test/fixtures/java/unit/MultiRight/Foo
315
248
  - test/fixtures/java/unit/MultiRight/MultiRight.java
316
- - test/fixtures/java/unit/MultiRight/Foo/FooTest.java
317
- - test/fixtures/java/unit/MultiRight/Foo/Foo.java
318
- - test/fixtures/java/unit/MultiRight/bar/BarTest.java
249
+ - test/fixtures/java/unit/MultiRight/MultiRightTest.java
319
250
  - test/fixtures/java/unit/MultiRight/bar/Bar.java
320
- - test/fixtures/java/unit/SimpleException/SimpleExceptionTest.java
251
+ - test/fixtures/java/unit/MultiRight/bar/BarTest.java
252
+ - test/fixtures/java/unit/MultiRight/Foo/Foo.java
253
+ - test/fixtures/java/unit/MultiRight/Foo/FooTest.java
321
254
  - test/fixtures/java/unit/SimpleException/build.sh
322
- - test/fixtures/text/1.txt
323
- - test/fixtures/unit/error.rb
324
- - test/fixtures/unit/bad.rb
325
- - test/fixtures/unit/good.rb
255
+ - test/fixtures/java/unit/SimpleException/SimpleExceptionTest.java
326
256
  - test/fixtures/mini-lib/Makefile
327
257
  - test/fixtures/mini-lib/strlen.c
328
- - test/fixtures/package/pkg_foo.tar.gz
329
258
  - test/fixtures/package/pkg_foo
330
- - test/fixtures/package/pkg_foo/Makefile
259
+ - test/fixtures/package/pkg_foo.tar.gz
260
+ - test/fixtures/package/pkg_foo/bootstrap
331
261
  - test/fixtures/package/pkg_foo/configure
332
262
  - test/fixtures/package/pkg_foo/foo.sh
333
- - test/fixtures/package/pkg_foo/bootstrap
334
- - test/examples/sql
335
- - test/examples/basic.yml
336
- - test/examples/cache
337
- - test/examples/README
338
- - test/examples/students-suite.yml
339
- - test/examples/basic.rb
340
- - test/examples/students
341
- - test/examples/sql/basic.yml
342
- - test/examples/cache/cache_and_fatal.yml
343
- - test/examples/cache/simple.yml
344
- - test/examples/students/mini-lib.yml
345
- - test/examples/students/pool_stud.yml
346
- - test/examples/students/glob_stud.yml
347
- - test/examples/students/ball.yml
348
- - test/examples/students/stud.yml
349
- - misc/renaming
350
- - misc/header.rb
263
+ - test/fixtures/package/pkg_foo/Makefile
264
+ - test/fixtures/text/1.txt
265
+ - test/fixtures/unit/bad.rb
266
+ - test/fixtures/unit/error.rb
267
+ - test/fixtures/unit/good.rb
268
+ - test/functional/author.yml
269
+ - test/functional/base.yml
270
+ - test/functional/base_pool.yml
271
+ - test/functional/block.yml
272
+ - test/functional/cat.yml
273
+ - test/functional/cmd.yml
274
+ - test/functional/command.yml
275
+ - test/functional/diff.yml
276
+ - test/functional/env_cmd.yml
277
+ - test/functional/exit.yml
278
+ - test/functional/fatal.yml
279
+ - test/functional/glob.yml
280
+ - test/functional/hexa-diff.yml
281
+ - test/functional/host_selector.yml
282
+ - test/functional/import.yml
283
+ - test/functional/iterate.yml
284
+ - test/functional/jump.yml
285
+ - test/functional/killall.yml
286
+ - test/functional/pkg.yml
287
+ - test/functional/r_unit.yml
288
+ - test/functional/rmatch.yml
289
+ - test/functional/signal_cmd.yml
290
+ - test/functional/sub.yml
291
+ - test/functional/test.yml
292
+ - test/functional/threshold.yml
293
+ - test/functional/timeout.yml
294
+ - test/functional/wc.yml
295
+ - test/functional/weight.yml
296
+ - test/pkg/cmdline.yml
297
+ - test/pool/base.yml
298
+ - test/pool/pool.yml
299
+ - test/ruby/base.rb
300
+ - test/ruby/iterate.rb
301
+ - test/ruby/wc.rb
302
+ - test/unit/dumpers
303
+ - test/unit/filters
304
+ - test/unit/filters_test.rb
305
+ - test/unit/loaders
306
+ - test/unit/logger
307
+ - test/unit/logger_test.rb
308
+ - test/unit/strategies
309
+ - test/unit/dumpers/mail_test.rb
310
+ - test/unit/dumpers/path_test.rb
311
+ - test/unit/dumpers/xml_test.rb
312
+ - test/unit/dumpers/yaml_test.rb
313
+ - test/unit/filters/buffer_test.rb
314
+ - test/unit/filters/keep_skip_based_test.rb
315
+ - test/unit/filters/node_cut_test.rb
316
+ - test/unit/filters/rpath_filter_test.rb
317
+ - test/unit/filters/text_filter_test.rb
318
+ - test/unit/logger/section_node_test.rb
319
+ - test/unit/logger/severity_test.rb
320
+ - test/unit/logger/to_uttk_log_test.rb
321
+ - test/unit/logger/verbosity_test.rb
322
+ - test/unit/strategies/suite_test.rb
351
323
  - misc/expandtab.rb
352
- - misc/uttk-grep.sh
324
+ - misc/header.rb
325
+ - misc/renaming
353
326
  - misc/textile_compiler
327
+ - misc/uttk-grep.sh
354
328
  - misc/uttk-line-count.rb
329
+ - AUTHORS
330
+ - BESTOF
331
+ - ChangeLog
332
+ - COPYING
333
+ - GUIDELINES
355
334
  - LGPL
335
+ - MATRIX
356
336
  - NEWS
357
337
  - NORM
358
- - TODO
338
+ - PITFALLS
359
339
  - Rakefile
360
- - TODO.old
361
340
  - README
362
- - VERSION
363
- - GUIDELINES
364
- - AUTHORS
341
+ - SPEC.gemspec
365
342
  - SPEC.yml
366
- - ChangeLog
367
- - COPYING
343
+ - TODO
344
+ - TODO.old
345
+ - VERSION
368
346
  test_files: []
369
347
 
370
348
  rdoc_options: []
@@ -379,6 +357,24 @@ extensions: []
379
357
  requirements: []
380
358
 
381
359
  dependencies:
360
+ - !ruby/object:Gem::Dependency
361
+ name: unified_matchers
362
+ version_requirement:
363
+ version_requirements: !ruby/object:Gem::Version::Requirement
364
+ requirements:
365
+ - - ~>
366
+ - !ruby/object:Gem::Version
367
+ version: 0.1.5
368
+ version:
369
+ - !ruby/object:Gem::Dependency
370
+ name: objective_command
371
+ version_requirement:
372
+ version_requirements: !ruby/object:Gem::Version::Requirement
373
+ requirements:
374
+ - - ~>
375
+ - !ruby/object:Gem::Version
376
+ version: 0.1.5
377
+ version:
382
378
  - !ruby/object:Gem::Dependency
383
379
  name: ruby_ex
384
380
  version_requirement:
@@ -386,7 +382,7 @@ dependencies:
386
382
  requirements:
387
383
  - - ~>
388
384
  - !ruby/object:Gem::Version
389
- version: 0.4.5
385
+ version: 0.5.5
390
386
  version:
391
387
  - !ruby/object:Gem::Dependency
392
388
  name: actionpack
@@ -395,5 +391,14 @@ dependencies:
395
391
  requirements:
396
392
  - - ~>
397
393
  - !ruby/object:Gem::Version
398
- version: 1.11.2
394
+ version: 1.12.5
395
+ version:
396
+ - !ruby/object:Gem::Dependency
397
+ name: core_ex
398
+ version_requirement:
399
+ version_requirements: !ruby/object:Gem::Version::Requirement
400
+ requirements:
401
+ - - ~>
402
+ - !ruby/object:Gem::Version
403
+ version: 0.6.5
399
404
  version: