actir 1.2.4 → 1.2.5
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 +4 -4
- data/.gitignore +2 -1
- data/lib/actir.rb +6 -5
- data/lib/actir/parallel_tests/report/html_formatter.rb +27 -2
- data/lib/actir/parallel_tests/test/result.rb +13 -3
- data/lib/actir/remote.rb +4 -2
- data/lib/actir/version.rb +1 -1
- metadata +2 -10
- data/.idea/.name +0 -1
- data/.idea/.rakeTasks +0 -7
- data/.idea/actir.iml +0 -33
- data/.idea/encodings.xml +0 -6
- data/.idea/misc.xml +0 -14
- data/.idea/modules.xml +0 -8
- data/.idea/vcs.xml +0 -6
- data/.idea/workspace.xml +0 -406
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 877c1e9f4bc3c641ba3df661bb2f70d91db4772d
|
4
|
+
data.tar.gz: c2152aeeeb62d7e02eceba0ddb4c4fab024cf856
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a2b674a34b7ca38185a993d443ef9d19e6d34a3e40a441084a69bd7d41bd88d745c6017e39bb49ec29926705ca6bfae5d20bdfb88ba4338b5825739517713c45
|
7
|
+
data.tar.gz: aaf2be98321f305cd2d943a10bc29e940c378c41d9baa2826055e6108ded25df38be7deb3130b7d9ec84e9e67a31dd35004e4dac680c3163ab7a3955cb046b2b
|
data/.gitignore
CHANGED
data/lib/actir.rb
CHANGED
@@ -46,11 +46,12 @@ module Actir
|
|
46
46
|
|
47
47
|
#若用例执行失败则进行截图,在每个用例的teardown方法中直接调用,传入浏览器对象实例
|
48
48
|
def screenshot_if_failed(browser)
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
49
|
+
@screen_path = File.join($project_path, 'screenshots')
|
50
|
+
unless self.passed?
|
51
|
+
Dir::mkdir(@screen_path) if not File.directory?(@screen_path)
|
52
|
+
#time = Time.now.strftime('%Y%m%d-%H%M%S')
|
53
|
+
screenshot = @screen_path + "/FAILED_#{self.name}.png"
|
54
|
+
browser.screenshot.save screenshot
|
54
55
|
end
|
55
56
|
end
|
56
57
|
end
|
@@ -32,16 +32,40 @@ module Actir
|
|
32
32
|
@file.puts " </dd>"
|
33
33
|
end
|
34
34
|
|
35
|
-
def print_testcase_failed(testcase_name, backtrace, failure_number)
|
35
|
+
def print_testcase_failed(testsuit_name, testcase_name, backtrace, failure_number)
|
36
|
+
#screenshots_path = File.join($project_path, 'screenshots')
|
37
|
+
temp = testcase_name.split(":")
|
38
|
+
class_name = testsuit_name.split(":")[1]
|
39
|
+
method_name = temp[1]
|
40
|
+
|
41
|
+
#class_full_name = temp[0].split("/")
|
42
|
+
#class_name = class_full_name[class_full_name.length - 1].split(".")[0].camelize
|
36
43
|
@file.puts " <dd class=\"testcase failed\">"
|
37
44
|
@file.puts " <span class=\"failed_spec_name\">[Testcase]: #{h(testcase_name)}</span>"
|
38
45
|
@file.puts " <div id=\"testtab_#{failure_number}\" style=\"float:right\"><a class=\"expand\" href=\"#\" onClick=\"Effect('failure_#{failure_number}',this.parentNode.id);\" >+</a> </div>"
|
39
46
|
@file.puts " <div class=\"failure\" id=\"failure_#{failure_number}\" style=\"display:none;\">"
|
40
|
-
@file.puts " <div class=\"backtrace\"><pre>#{h(backtrace)}</pre></div>"
|
47
|
+
@file.puts " <div class=\"backtrace\"><pre>#{h(backtrace)}</pre> <h6>Failure Screenshots:<h6><img src=\"../ws/screenshots/FAILED_#{method_name}(#{class_name}).png\" onerror=\"javascript:this.src='../../ws/screenshots/FAILED_#{method_name}(#{class_name}).png'\" hight=\"700\" width=\"800\"></div>"
|
41
48
|
@file.puts " </div>"
|
42
49
|
@file.puts " </dd>"
|
43
50
|
end
|
44
51
|
|
52
|
+
# def print_testcase_failed(testsuit_name, testcase_name, backtrace, failure_number)
|
53
|
+
# screenshots_path = File.join($project_path, 'screenshots')
|
54
|
+
# temp = testcase_name.split(":")
|
55
|
+
# class_name = testsuit_name.split(":")[1]
|
56
|
+
# method_name = temp[1]
|
57
|
+
|
58
|
+
# #class_full_name = temp[0].split("/")
|
59
|
+
# #class_name = class_full_name[class_full_name.length - 1].split(".")[0].camelize
|
60
|
+
# @file.puts " <dd class=\"testcase failed\">"
|
61
|
+
# @file.puts " <span class=\"failed_spec_name\">[Testcase]: #{h(testcase_name)}</span>"
|
62
|
+
# @file.puts " <div id=\"testtab_#{failure_number}\" style=\"float:right\"><a class=\"expand\" href=\"#\" onClick=\"Effect('failure_#{failure_number}',this.parentNode.id);\" >+</a> </div>"
|
63
|
+
# @file.puts " <div class=\"failure\" id=\"failure_#{failure_number}\" style=\"display:none;\">"
|
64
|
+
# @file.puts " <div class=\"backtrace\"><pre>#{h(backtrace)}</pre> <h6>Failure Screenshots:<h6><img src=\"#{screenshots_path}/FAILED_#{method_name}(#{class_name}).png\" onerror=\"javascript:this.src='#'\" hight=\"700\" width=\"800\"></div>"
|
65
|
+
# @file.puts " </div>"
|
66
|
+
# @file.puts " </dd>"
|
67
|
+
# end
|
68
|
+
|
45
69
|
def print_summary(testcase_count, failure_count)
|
46
70
|
totals = "#{testcase_count} testcase#{'s' unless testcase_count == 1}, "
|
47
71
|
totals << "#{failure_count} failure#{'s' unless failure_count <= 1 }"
|
@@ -163,6 +187,7 @@ function assign_display_style_for_group(classname, display_flag, subgroup_flag)
|
|
163
187
|
function $G(Read_Id) { return document.getElementById(Read_Id) }
|
164
188
|
|
165
189
|
function Effect(ObjectId,parentId){
|
190
|
+
console.log(ObjectId);
|
166
191
|
var Obj_Display = $G(ObjectId).style.display;
|
167
192
|
if (Obj_Display == 'none'){
|
168
193
|
Start(ObjectId,'Opens');
|
@@ -98,12 +98,12 @@ module Actir
|
|
98
98
|
end
|
99
99
|
|
100
100
|
# 记录报错用例名称
|
101
|
-
if (result =~ failure_tests_name_reg) || (result =~ error_tests_name_reg)
|
102
|
-
testcase = $1
|
101
|
+
if (result =~ failure_tests_name_reg) || (result =~ error_tests_name_reg) || (result =~ fail_tests_name_reg_extra)
|
102
|
+
testcase = $1
|
103
103
|
end
|
104
104
|
|
105
105
|
# 记录报错用例文件名称
|
106
|
-
if result =~ failure_tests_file_reg
|
106
|
+
if (result =~ failure_tests_file_reg) || (result =~ failure_tests_file_reg_extra)
|
107
107
|
#范例:"testcode/test_tt/test_hehe.rb:8:in `xxxx'"
|
108
108
|
testfile = $1
|
109
109
|
end
|
@@ -143,11 +143,21 @@ module Actir
|
|
143
143
|
/^Failure:\s(test.+)\(.+\)/
|
144
144
|
end
|
145
145
|
|
146
|
+
# 获取失败用例名的正则[补充场景]
|
147
|
+
def fail_tests_name_reg_extra
|
148
|
+
/^(test.+)\(.+\)/
|
149
|
+
end
|
150
|
+
|
146
151
|
# 获取失败用例文件名的正则
|
147
152
|
def failure_tests_file_reg
|
148
153
|
/(.+\/test.+rb):\d+:in\s`.+'/
|
149
154
|
end
|
150
155
|
|
156
|
+
# 获取失败用例文件名的正则[补充场景]
|
157
|
+
def failure_tests_file_reg_extra
|
158
|
+
/^(test.+rb):\d+:in\s`.+'/
|
159
|
+
end
|
160
|
+
|
151
161
|
# 测试套信息开头正则
|
152
162
|
def test_info_swtich_on
|
153
163
|
/^\[suite start\]/
|
data/lib/actir/remote.rb
CHANGED
data/lib/actir/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: actir
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- hub
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-12-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: test-unit
|
@@ -118,14 +118,6 @@ extensions: []
|
|
118
118
|
extra_rdoc_files: []
|
119
119
|
files:
|
120
120
|
- ".gitignore"
|
121
|
-
- ".idea/.name"
|
122
|
-
- ".idea/.rakeTasks"
|
123
|
-
- ".idea/actir.iml"
|
124
|
-
- ".idea/encodings.xml"
|
125
|
-
- ".idea/misc.xml"
|
126
|
-
- ".idea/modules.xml"
|
127
|
-
- ".idea/vcs.xml"
|
128
|
-
- ".idea/workspace.xml"
|
129
121
|
- ".travis.yml"
|
130
122
|
- CODE_OF_CONDUCT.md
|
131
123
|
- Gemfile
|
data/.idea/.name
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
actir
|
data/.idea/.rakeTasks
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<Settings><!--This file was automatically generated by Ruby plugin.
|
3
|
-
You are allowed to:
|
4
|
-
1. Remove rake task
|
5
|
-
2. Add existing rake tasks
|
6
|
-
To add existing rake tasks automatically delete this file and reload the project.
|
7
|
-
--><RakeGroup description="" fullCmd="" taksId="rake"><RakeTask description="" fullCmd="gem" taksId="gem" /><RakeTask description="" fullCmd="install" taksId="install" /><RakeTask description="" fullCmd="package" taksId="package" /><RakeTask description="" fullCmd="uninstall" taksId="uninstall" /></RakeGroup></Settings>
|
data/.idea/actir.iml
DELETED
@@ -1,33 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<module type="RUBY_MODULE" version="4">
|
3
|
-
<component name="FacetManager">
|
4
|
-
<facet type="gem" name="Ruby Gem">
|
5
|
-
<configuration>
|
6
|
-
<option name="GEM_APP_ROOT_PATH" value="$MODULE_DIR$" />
|
7
|
-
<option name="GEM_APP_TEST_PATH" value="" />
|
8
|
-
<option name="GEM_APP_LIB_PATH" value="$MODULE_DIR$/lib" />
|
9
|
-
</configuration>
|
10
|
-
</facet>
|
11
|
-
</component>
|
12
|
-
<component name="NewModuleRootManager">
|
13
|
-
<content url="file://$MODULE_DIR$">
|
14
|
-
<excludeFolder url="file://$MODULE_DIR$/.bundle" />
|
15
|
-
<excludeFolder url="file://$MODULE_DIR$/vendor/bundle" />
|
16
|
-
</content>
|
17
|
-
<orderEntry type="inheritedJdk" />
|
18
|
-
<orderEntry type="sourceFolder" forTests="false" />
|
19
|
-
<orderEntry type="library" scope="PROVIDED" name="bundler (v1.10.3, ruby-2.0.0-p481) [gem]" level="application" />
|
20
|
-
<orderEntry type="library" scope="PROVIDED" name="childprocess (v0.5.6, ruby-2.0.0-p481) [gem]" level="application" />
|
21
|
-
<orderEntry type="library" scope="PROVIDED" name="facets (v2.9.3, ruby-2.0.0-p481) [gem]" level="application" />
|
22
|
-
<orderEntry type="library" scope="PROVIDED" name="ffi (v1.9.8, ruby-2.0.0-p481) [gem]" level="application" />
|
23
|
-
<orderEntry type="library" scope="PROVIDED" name="multi_json (v1.11.0, ruby-2.0.0-p481) [gem]" level="application" />
|
24
|
-
<orderEntry type="library" scope="PROVIDED" name="parallel (v1.6.0, ruby-2.0.0-p481) [gem]" level="application" />
|
25
|
-
<orderEntry type="library" scope="PROVIDED" name="power_assert (v0.2.3, ruby-2.0.0-p481) [gem]" level="application" />
|
26
|
-
<orderEntry type="library" scope="PROVIDED" name="rake (v10.4.2, ruby-2.0.0-p481) [gem]" level="application" />
|
27
|
-
<orderEntry type="library" scope="PROVIDED" name="rubyzip (v1.1.7, ruby-2.0.0-p481) [gem]" level="application" />
|
28
|
-
<orderEntry type="library" scope="PROVIDED" name="selenium-webdriver (v2.46.2, ruby-2.0.0-p481) [gem]" level="application" />
|
29
|
-
<orderEntry type="library" scope="PROVIDED" name="test-unit (v3.1.1, ruby-2.0.0-p481) [gem]" level="application" />
|
30
|
-
<orderEntry type="library" scope="PROVIDED" name="watir-webdriver (v0.6.11, ruby-2.0.0-p481) [gem]" level="application" />
|
31
|
-
<orderEntry type="library" scope="PROVIDED" name="websocket (v1.2.2, ruby-2.0.0-p481) [gem]" level="application" />
|
32
|
-
</component>
|
33
|
-
</module>
|
data/.idea/encodings.xml
DELETED
data/.idea/misc.xml
DELETED
@@ -1,14 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<project version="4">
|
3
|
-
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
4
|
-
<OptionsSetting value="true" id="Add" />
|
5
|
-
<OptionsSetting value="true" id="Remove" />
|
6
|
-
<OptionsSetting value="true" id="Checkout" />
|
7
|
-
<OptionsSetting value="true" id="Update" />
|
8
|
-
<OptionsSetting value="true" id="Status" />
|
9
|
-
<OptionsSetting value="true" id="Edit" />
|
10
|
-
<ConfirmationsSetting value="0" id="Add" />
|
11
|
-
<ConfirmationsSetting value="0" id="Remove" />
|
12
|
-
</component>
|
13
|
-
<component name="ProjectRootManager" version="2" project-jdk-name="ruby-2.0.0-p481" project-jdk-type="RUBY_SDK" />
|
14
|
-
</project>
|
data/.idea/modules.xml
DELETED
data/.idea/vcs.xml
DELETED
data/.idea/workspace.xml
DELETED
@@ -1,406 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<project version="4">
|
3
|
-
<component name="ChangeListManager">
|
4
|
-
<list default="true" id="c63fee27-ce2d-4356-9d91-28cb5944f1bf" name="Default" comment="">
|
5
|
-
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/actir/parallel_tests/test/result.rb" afterPath="$PROJECT_DIR$/lib/actir/parallel_tests/test/result.rb" />
|
6
|
-
</list>
|
7
|
-
<ignored path="actir.iws" />
|
8
|
-
<ignored path=".idea/workspace.xml" />
|
9
|
-
<ignored path="$PROJECT_DIR$/.bundle/" />
|
10
|
-
<ignored path="$PROJECT_DIR$/vendor/bundle/" />
|
11
|
-
<ignored path=".idea/dataSources.local.xml" />
|
12
|
-
<option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
|
13
|
-
<option name="TRACKING_ENABLED" value="true" />
|
14
|
-
<option name="SHOW_DIALOG" value="false" />
|
15
|
-
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
16
|
-
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
17
|
-
<option name="LAST_RESOLUTION" value="IGNORE" />
|
18
|
-
</component>
|
19
|
-
<component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
|
20
|
-
<component name="CreatePatchCommitExecutor">
|
21
|
-
<option name="PATCH_PATH" value="" />
|
22
|
-
</component>
|
23
|
-
<component name="FavoritesManager">
|
24
|
-
<favorites_list name="actir" />
|
25
|
-
</component>
|
26
|
-
<component name="FileEditorManager">
|
27
|
-
<leaf>
|
28
|
-
<file leaf-file-name="rerunner.rb" pinned="false" current-in-tab="false">
|
29
|
-
<entry file="file://$PROJECT_DIR$/lib/actir/parallel_tests/test/rerunner.rb">
|
30
|
-
<provider selected="true" editor-type-id="text-editor">
|
31
|
-
<state vertical-scroll-proportion="0.0">
|
32
|
-
<caret line="83" column="31" selection-start-line="83" selection-start-column="31" selection-end-line="83" selection-end-column="31" />
|
33
|
-
<folding />
|
34
|
-
</state>
|
35
|
-
</provider>
|
36
|
-
</entry>
|
37
|
-
</file>
|
38
|
-
<file leaf-file-name="result.rb" pinned="false" current-in-tab="true">
|
39
|
-
<entry file="file://$PROJECT_DIR$/lib/actir/parallel_tests/test/result.rb">
|
40
|
-
<provider selected="true" editor-type-id="text-editor">
|
41
|
-
<state vertical-scroll-proportion="0.6978193">
|
42
|
-
<caret line="32" column="23" selection-start-line="32" selection-start-column="23" selection-end-line="32" selection-end-column="23" />
|
43
|
-
<folding />
|
44
|
-
</state>
|
45
|
-
</provider>
|
46
|
-
</entry>
|
47
|
-
</file>
|
48
|
-
<file leaf-file-name="runner.rb" pinned="false" current-in-tab="false">
|
49
|
-
<entry file="file://$PROJECT_DIR$/lib/actir/parallel_tests/test/runner.rb">
|
50
|
-
<provider selected="true" editor-type-id="text-editor">
|
51
|
-
<state vertical-scroll-proportion="0.0">
|
52
|
-
<caret line="52" column="57" selection-start-line="52" selection-start-column="57" selection-end-line="52" selection-end-column="57" />
|
53
|
-
<folding />
|
54
|
-
</state>
|
55
|
-
</provider>
|
56
|
-
</entry>
|
57
|
-
</file>
|
58
|
-
</leaf>
|
59
|
-
</component>
|
60
|
-
<component name="Git.Settings">
|
61
|
-
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
62
|
-
</component>
|
63
|
-
<component name="IdeDocumentHistory">
|
64
|
-
<option name="CHANGED_PATHS">
|
65
|
-
<list>
|
66
|
-
<option value="$PROJECT_DIR$/lib/actir/parallel_tests/test/result.rb" />
|
67
|
-
</list>
|
68
|
-
</option>
|
69
|
-
</component>
|
70
|
-
<component name="JsBuildToolGruntFileManager" detection-done="true" />
|
71
|
-
<component name="JsBuildToolPackageJson" detection-done="true" />
|
72
|
-
<component name="JsGulpfileManager">
|
73
|
-
<detection-done>true</detection-done>
|
74
|
-
</component>
|
75
|
-
<component name="ProjectFrameBounds">
|
76
|
-
<option name="x" value="-1873" />
|
77
|
-
<option name="y" value="-164" />
|
78
|
-
<option name="width" value="1873" />
|
79
|
-
<option name="height" value="1057" />
|
80
|
-
</component>
|
81
|
-
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
82
|
-
<OptionsSetting value="true" id="Add" />
|
83
|
-
<OptionsSetting value="true" id="Remove" />
|
84
|
-
<OptionsSetting value="true" id="Checkout" />
|
85
|
-
<OptionsSetting value="true" id="Update" />
|
86
|
-
<OptionsSetting value="true" id="Status" />
|
87
|
-
<OptionsSetting value="true" id="Edit" />
|
88
|
-
<ConfirmationsSetting value="0" id="Add" />
|
89
|
-
<ConfirmationsSetting value="0" id="Remove" />
|
90
|
-
</component>
|
91
|
-
<component name="ProjectView">
|
92
|
-
<navigator currentView="ProjectPane" proportions="" version="1">
|
93
|
-
<flattenPackages />
|
94
|
-
<showMembers />
|
95
|
-
<showModules />
|
96
|
-
<showLibraryContents />
|
97
|
-
<hideEmptyPackages />
|
98
|
-
<abbreviatePackageNames />
|
99
|
-
<autoscrollToSource />
|
100
|
-
<autoscrollFromSource />
|
101
|
-
<sortByType />
|
102
|
-
<manualOrder />
|
103
|
-
<foldersAlwaysOnTop value="true" />
|
104
|
-
</navigator>
|
105
|
-
<panes>
|
106
|
-
<pane id="Scratches" />
|
107
|
-
<pane id="ProjectPane">
|
108
|
-
<subPane>
|
109
|
-
<PATH>
|
110
|
-
<PATH_ELEMENT>
|
111
|
-
<option name="myItemId" value="actir" />
|
112
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
113
|
-
</PATH_ELEMENT>
|
114
|
-
</PATH>
|
115
|
-
<PATH>
|
116
|
-
<PATH_ELEMENT>
|
117
|
-
<option name="myItemId" value="actir" />
|
118
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
119
|
-
</PATH_ELEMENT>
|
120
|
-
<PATH_ELEMENT>
|
121
|
-
<option name="myItemId" value="actir" />
|
122
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
123
|
-
</PATH_ELEMENT>
|
124
|
-
</PATH>
|
125
|
-
<PATH>
|
126
|
-
<PATH_ELEMENT>
|
127
|
-
<option name="myItemId" value="actir" />
|
128
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
129
|
-
</PATH_ELEMENT>
|
130
|
-
<PATH_ELEMENT>
|
131
|
-
<option name="myItemId" value="actir" />
|
132
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
133
|
-
</PATH_ELEMENT>
|
134
|
-
<PATH_ELEMENT>
|
135
|
-
<option name="myItemId" value="lib" />
|
136
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
137
|
-
</PATH_ELEMENT>
|
138
|
-
</PATH>
|
139
|
-
<PATH>
|
140
|
-
<PATH_ELEMENT>
|
141
|
-
<option name="myItemId" value="actir" />
|
142
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
143
|
-
</PATH_ELEMENT>
|
144
|
-
<PATH_ELEMENT>
|
145
|
-
<option name="myItemId" value="actir" />
|
146
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
147
|
-
</PATH_ELEMENT>
|
148
|
-
<PATH_ELEMENT>
|
149
|
-
<option name="myItemId" value="lib" />
|
150
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
151
|
-
</PATH_ELEMENT>
|
152
|
-
<PATH_ELEMENT>
|
153
|
-
<option name="myItemId" value="actir" />
|
154
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
155
|
-
</PATH_ELEMENT>
|
156
|
-
</PATH>
|
157
|
-
<PATH>
|
158
|
-
<PATH_ELEMENT>
|
159
|
-
<option name="myItemId" value="actir" />
|
160
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
161
|
-
</PATH_ELEMENT>
|
162
|
-
<PATH_ELEMENT>
|
163
|
-
<option name="myItemId" value="actir" />
|
164
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
165
|
-
</PATH_ELEMENT>
|
166
|
-
<PATH_ELEMENT>
|
167
|
-
<option name="myItemId" value="lib" />
|
168
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
169
|
-
</PATH_ELEMENT>
|
170
|
-
<PATH_ELEMENT>
|
171
|
-
<option name="myItemId" value="actir" />
|
172
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
173
|
-
</PATH_ELEMENT>
|
174
|
-
<PATH_ELEMENT>
|
175
|
-
<option name="myItemId" value="script" />
|
176
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
177
|
-
</PATH_ELEMENT>
|
178
|
-
</PATH>
|
179
|
-
<PATH>
|
180
|
-
<PATH_ELEMENT>
|
181
|
-
<option name="myItemId" value="actir" />
|
182
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
183
|
-
</PATH_ELEMENT>
|
184
|
-
<PATH_ELEMENT>
|
185
|
-
<option name="myItemId" value="actir" />
|
186
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
187
|
-
</PATH_ELEMENT>
|
188
|
-
<PATH_ELEMENT>
|
189
|
-
<option name="myItemId" value="lib" />
|
190
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
191
|
-
</PATH_ELEMENT>
|
192
|
-
<PATH_ELEMENT>
|
193
|
-
<option name="myItemId" value="actir" />
|
194
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
195
|
-
</PATH_ELEMENT>
|
196
|
-
<PATH_ELEMENT>
|
197
|
-
<option name="myItemId" value="parallel_tests" />
|
198
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
199
|
-
</PATH_ELEMENT>
|
200
|
-
</PATH>
|
201
|
-
<PATH>
|
202
|
-
<PATH_ELEMENT>
|
203
|
-
<option name="myItemId" value="actir" />
|
204
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
205
|
-
</PATH_ELEMENT>
|
206
|
-
<PATH_ELEMENT>
|
207
|
-
<option name="myItemId" value="actir" />
|
208
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
209
|
-
</PATH_ELEMENT>
|
210
|
-
<PATH_ELEMENT>
|
211
|
-
<option name="myItemId" value="lib" />
|
212
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
213
|
-
</PATH_ELEMENT>
|
214
|
-
<PATH_ELEMENT>
|
215
|
-
<option name="myItemId" value="actir" />
|
216
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
217
|
-
</PATH_ELEMENT>
|
218
|
-
<PATH_ELEMENT>
|
219
|
-
<option name="myItemId" value="parallel_tests" />
|
220
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
221
|
-
</PATH_ELEMENT>
|
222
|
-
<PATH_ELEMENT>
|
223
|
-
<option name="myItemId" value="test" />
|
224
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
225
|
-
</PATH_ELEMENT>
|
226
|
-
</PATH>
|
227
|
-
<PATH>
|
228
|
-
<PATH_ELEMENT>
|
229
|
-
<option name="myItemId" value="actir" />
|
230
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
231
|
-
</PATH_ELEMENT>
|
232
|
-
<PATH_ELEMENT>
|
233
|
-
<option name="myItemId" value="actir" />
|
234
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
235
|
-
</PATH_ELEMENT>
|
236
|
-
<PATH_ELEMENT>
|
237
|
-
<option name="myItemId" value="lib" />
|
238
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
239
|
-
</PATH_ELEMENT>
|
240
|
-
<PATH_ELEMENT>
|
241
|
-
<option name="myItemId" value="actir" />
|
242
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
243
|
-
</PATH_ELEMENT>
|
244
|
-
<PATH_ELEMENT>
|
245
|
-
<option name="myItemId" value="parallel_tests" />
|
246
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
247
|
-
</PATH_ELEMENT>
|
248
|
-
<PATH_ELEMENT>
|
249
|
-
<option name="myItemId" value="report" />
|
250
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
251
|
-
</PATH_ELEMENT>
|
252
|
-
</PATH>
|
253
|
-
</subPane>
|
254
|
-
</pane>
|
255
|
-
<pane id="Scope" />
|
256
|
-
</panes>
|
257
|
-
</component>
|
258
|
-
<component name="PropertiesComponent">
|
259
|
-
<property name="last_opened_file_path" value="$PROJECT_DIR$" />
|
260
|
-
<property name="WebServerToolWindowFactoryState" value="false" />
|
261
|
-
<property name="settings.editor.selected.configurable" value="reference.settingsdialog.IDE.editor.colors.Font" />
|
262
|
-
<property name="js-jscs-nodeInterpreter" value="/usr/local/bin/node" />
|
263
|
-
<property name="settings.editor.splitter.proportion" value="0.2" />
|
264
|
-
</component>
|
265
|
-
<component name="RunManager">
|
266
|
-
<configuration default="true" type="CucumberRunConfigurationType" factoryName="Cucumber">
|
267
|
-
<predefined_log_file id="RUBY_CUCUMBER" enabled="true" />
|
268
|
-
<module name="" />
|
269
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
270
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
271
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
272
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
273
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
274
|
-
<envs />
|
275
|
-
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
276
|
-
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
277
|
-
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
278
|
-
<COVERAGE_PATTERN ENABLED="true">
|
279
|
-
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
280
|
-
</COVERAGE_PATTERN>
|
281
|
-
</EXTENSION>
|
282
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*.feature" />
|
283
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
284
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
285
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
286
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TAGS_FILTER" VALUE="" />
|
287
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_NAME_FILTER" VALUE="" />
|
288
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_ARGS" VALUE="--color -r features" />
|
289
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
290
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
291
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="VERBOSE_OPTION" VALUE="false" />
|
292
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
293
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
294
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
295
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_RUNNER_PATH" VALUE="" />
|
296
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_RUNNER" VALUE="false" />
|
297
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SETTINGS_VERSION" VALUE="2" />
|
298
|
-
<method />
|
299
|
-
</configuration>
|
300
|
-
<configuration default="true" type="JavascriptDebugType" factoryName="JavaScript Debug">
|
301
|
-
<method />
|
302
|
-
</configuration>
|
303
|
-
<configuration default="true" type="RubyRunConfigurationType" factoryName="Ruby">
|
304
|
-
<module name="" />
|
305
|
-
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
306
|
-
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="" />
|
307
|
-
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
308
|
-
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
309
|
-
<RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
|
310
|
-
<envs />
|
311
|
-
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
312
|
-
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
313
|
-
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
314
|
-
<COVERAGE_PATTERN ENABLED="true">
|
315
|
-
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
316
|
-
</COVERAGE_PATTERN>
|
317
|
-
</EXTENSION>
|
318
|
-
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="" />
|
319
|
-
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
320
|
-
<method />
|
321
|
-
</configuration>
|
322
|
-
<configuration default="true" type="js.build_tools.gulp" factoryName="Gulp.js">
|
323
|
-
<method />
|
324
|
-
</configuration>
|
325
|
-
<configuration default="true" type="js.build_tools.npm" factoryName="npm">
|
326
|
-
<command value="run-script" />
|
327
|
-
<scripts />
|
328
|
-
<envs />
|
329
|
-
<method />
|
330
|
-
</configuration>
|
331
|
-
</component>
|
332
|
-
<component name="ShelveChangesManager" show_recycled="false" />
|
333
|
-
<component name="TaskManager">
|
334
|
-
<task active="true" id="Default" summary="Default task">
|
335
|
-
<changelist id="c63fee27-ce2d-4356-9d91-28cb5944f1bf" name="Default" comment="" />
|
336
|
-
<created>1448369252847</created>
|
337
|
-
<option name="number" value="Default" />
|
338
|
-
<updated>1448369252847</updated>
|
339
|
-
</task>
|
340
|
-
<servers />
|
341
|
-
</component>
|
342
|
-
<component name="ToolWindowManager">
|
343
|
-
<frame x="-1873" y="-164" width="1873" height="1057" extended-state="6" />
|
344
|
-
<editor active="true" />
|
345
|
-
<layout>
|
346
|
-
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.25286728" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
347
|
-
<window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
|
348
|
-
<window_info id="Event Log" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="-1" side_tool="true" content_ui="tabs" />
|
349
|
-
<window_info id="Database" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
350
|
-
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.32996973" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
351
|
-
<window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
352
|
-
<window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
353
|
-
<window_info id="Terminal" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
354
|
-
<window_info id="Favorites" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="-1" side_tool="true" content_ui="tabs" />
|
355
|
-
<window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="4" side_tool="false" content_ui="tabs" />
|
356
|
-
<window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="2" side_tool="false" content_ui="combo" />
|
357
|
-
<window_info id="Message" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
358
|
-
<window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="SLIDING" type="SLIDING" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
359
|
-
<window_info id="Inspection" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="5" side_tool="false" content_ui="tabs" />
|
360
|
-
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
361
|
-
<window_info id="Ant Build" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
362
|
-
<window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
363
|
-
</layout>
|
364
|
-
</component>
|
365
|
-
<component name="VcsContentAnnotationSettings">
|
366
|
-
<option name="myLimit" value="2678400000" />
|
367
|
-
</component>
|
368
|
-
<component name="XDebuggerManager">
|
369
|
-
<breakpoint-manager />
|
370
|
-
<watches-manager />
|
371
|
-
</component>
|
372
|
-
<component name="editorHistoryManager">
|
373
|
-
<entry file="file://$PROJECT_DIR$/lib/actir/parallel_tests/test/runner.rb">
|
374
|
-
<provider selected="true" editor-type-id="text-editor">
|
375
|
-
<state vertical-scroll-proportion="0.0">
|
376
|
-
<caret line="52" column="57" selection-start-line="52" selection-start-column="57" selection-end-line="52" selection-end-column="57" />
|
377
|
-
<folding />
|
378
|
-
</state>
|
379
|
-
</provider>
|
380
|
-
</entry>
|
381
|
-
<entry file="file://$PROJECT_DIR$/lib/actir/initializer.rb">
|
382
|
-
<provider selected="true" editor-type-id="text-editor">
|
383
|
-
<state vertical-scroll-proportion="0.5233645">
|
384
|
-
<caret line="24" column="55" selection-start-line="24" selection-start-column="55" selection-end-line="24" selection-end-column="55" />
|
385
|
-
<folding />
|
386
|
-
</state>
|
387
|
-
</provider>
|
388
|
-
</entry>
|
389
|
-
<entry file="file://$PROJECT_DIR$/lib/actir/parallel_tests/test/rerunner.rb">
|
390
|
-
<provider selected="true" editor-type-id="text-editor">
|
391
|
-
<state vertical-scroll-proportion="0.0">
|
392
|
-
<caret line="83" column="31" selection-start-line="83" selection-start-column="31" selection-end-line="83" selection-end-column="31" />
|
393
|
-
<folding />
|
394
|
-
</state>
|
395
|
-
</provider>
|
396
|
-
</entry>
|
397
|
-
<entry file="file://$PROJECT_DIR$/lib/actir/parallel_tests/test/result.rb">
|
398
|
-
<provider selected="true" editor-type-id="text-editor">
|
399
|
-
<state vertical-scroll-proportion="0.6978193">
|
400
|
-
<caret line="32" column="23" selection-start-line="32" selection-start-column="23" selection-end-line="32" selection-end-column="23" />
|
401
|
-
<folding />
|
402
|
-
</state>
|
403
|
-
</provider>
|
404
|
-
</entry>
|
405
|
-
</component>
|
406
|
-
</project>
|