Skip to content

Commit dcf817b

Browse files
authored
Merge pull request #18 from amanchopra1905/main
updated the yaml files and browsers
2 parents 977d75c + 4f892ea commit dcf817b

11 files changed

+49
-272
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ logs/
77
nucleus.log
88
artifacts
99
hyperexecuteupdate
10+
target/

src/test/java/hyperexecute/SelPlayGroundTest1.java

+2-5
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ public class SelPlayGroundTest1
3131
String access_key = System.getenv("LT_ACCESS_KEY") == null ? "LT_ACCESS_KEY" :
3232
System.getenv("LT_ACCESS_KEY");
3333
String test_platform = System.getenv("TEST_OS");
34-
public static String csv_source = "/test-combinations/win/junit-test-data.csv";
3534

3635
@BeforeAll
3736
public static void start()
@@ -71,8 +70,6 @@ public void SetUpBrowser(String browserName, String version, String platform, St
7170
{
7271
System.out.println(e.getMessage());
7372
}
74-
75-
csv_source = "/test-combinations/win/junit-test-data.csv";
7673
}
7774

7875
@ParameterizedTest
@@ -201,10 +198,10 @@ static Stream<Arguments> setup_testEnvironment()
201198
System.out.println(platform_name);
202199

203200
return Stream.of(
204-
arguments("Microsoft Edge", "latest", platform_name,
201+
arguments("Chrome", "latest", platform_name,
205202
"[Test - 1] JUnit tests on HyperExecute Grid",
206203
"[Test - 1] JUnit tests on HyperExecute Grid"),
207-
arguments("Microsoft Edge", "latest-1", platform_name,
204+
arguments("Chrome", "latest-1", platform_name,
208205
"[Test - 2] JUnit tests on HyperExecute Grid",
209206
"[Test - 2] JUnit tests on HyperExecute Grid")
210207
);

src/test/java/hyperexecute/SelPlayGroundTest2.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -198,10 +198,10 @@ static Stream<Arguments> setup_testEnvironment()
198198
System.out.println(platform_name);
199199

200200
return Stream.of(
201-
arguments("Chrome", "latest-2", platform_name,
201+
arguments("Microsoft Edge", "latest", platform_name,
202202
"[Test - 3] JUnit tests on HyperExecute Grid",
203203
"[Test - 3] JUnit tests on HyperExecute Grid"),
204-
arguments("Firefox", "latest", platform_name,
204+
arguments("Microsoft Edge", "latest", platform_name,
205205
"[Test - 4] JUnit tests on HyperExecute Grid",
206206
"[Test - 4] JUnit tests on HyperExecute Grid")
207207
);

src/test/java/hyperexecute/SelPlayGroundTest3.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -194,10 +194,10 @@ static Stream<Arguments> setup_testEnvironment()
194194
System.out.println(platform_name);
195195

196196
return Stream.of(
197-
arguments("Chrome", "latest-1", platform_name,
197+
arguments("Chrome", "latest", platform_name,
198198
"[Test - 5] JUnit tests on HyperExecute Grid",
199199
"[Test - 5] JUnit tests on HyperExecute Grid"),
200-
arguments("Firefox", "latest-2", platform_name,
200+
arguments("Microsoft Edge", "latest", platform_name,
201201
"[Test - 6] JUnit tests on HyperExecute Grid",
202202
"[Test - 6] JUnit tests on HyperExecute Grid")
203203
);

yaml/junit_hyperexecute_hybrid_sample.yaml

+19-21
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,13 @@ testSuiteTimeout: 150
55
testSuiteStep: 150
66

77
runson: ${matrix.os}
8-
retryOnFailure: true
8+
99
autosplit: true
10-
maxRetries: 1
1110
concurrency: 3
12-
parallelism: 2
11+
parallelism: 1
1312

1413
matrix:
1514
os: [mac, win, linux]
16-
classname: ["SelPlayGroundTest1", "SelPlayGroundTest2", "SelPlayGroundTest3" ]
1715

1816
env:
1917
CACHE_DIR: m2_cache_dir
@@ -23,16 +21,30 @@ cacheKey: '{{ checksum "pom.xml" }}'
2321
cacheDirectories:
2422
- ${CACHE_DIR}
2523

26-
shell: bash
27-
2824
pre:
2925
- mvn -Dmaven.repo.local=${CACHE_DIR} -Dmaven.test.skip=true clean install
3026

27+
testDiscovery:
28+
type: raw
29+
mode: dynamic
30+
macCommand: |
31+
grep 'public class' src/test/java/hyperexecute/*.java | awk '{print$3}'
32+
winCommand: |
33+
grep 'public class' src/test/java/hyperexecute/*.java | awk '{print$3}'
34+
linuxCommand: |
35+
grep 'public class' src/test/java/hyperexecute/*.java | awk '{print$3}'
36+
37+
linuxTestRunnerCommand: mvn -Dplatname=linux -Dmaven.repo.local=m2_cache_dir -Dtest=$test test site surefire-report:report
38+
winTestRunnerCommand: mvn `-Dplatname=win `-Dmaven.repo.local=m2_cache_dir `-Dtest=$test test site surefire-report:report
39+
macTestRunnerCommand: mvn -Dplatname=mac -Dmaven.repo.local=m2_cache_dir -Dtest=$test test site surefire-report:report
40+
41+
retryOnFailure: true
42+
maxRetries: 1
43+
3144
post:
3245
- cat yaml/junit_hyperexecute_hybrid_sample.yaml
3346

3447
mergeArtifacts: true
35-
3648
uploadArtefacts:
3749
- name: Final-Report
3850
path:
@@ -47,19 +59,5 @@ partialReports:
4759
type: html
4860
frameworkName: extent
4961

50-
testDiscovery:
51-
type: raw
52-
mode: dynamic
53-
macCommand: |
54-
grep 'public class' src/test/java/hyperexecute/*.java | awk '{print$3}'
55-
winCommand: |
56-
grep 'public class' src/test/java/hyperexecute/*.java | awk '{print$3}'
57-
linuxCommand: |
58-
grep 'public class' src/test/java/hyperexecute/*.java | awk '{print$3}'
59-
60-
linuxTestRunnerCommand: mvn -Dplatname=linux -Dmaven.repo.local=m2_cache_dir -Dtest=$test test site surefire-report:report
61-
winTestRunnerCommand: mvn `-Dplatname=win `-Dmaven.repo.local=m2_cache_dir `-Dtest=$test test site surefire-report:report
62-
macTestRunnerCommand: mvn -Dplatname=mac -Dmaven.repo.local=m2_cache_dir -Dtest=$test test site surefire-report:report
63-
6462
jobLabel: [selenium-junit, hybrid]
6563
---
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,23 @@
11
---
22
version: 0.1
3-
globalTimeout: 150
4-
testSuiteTimeout: 150
5-
testSuiteStep: 150
6-
73
runson: linux
84

95
autosplit: true
10-
retryOnFailure: true
11-
12-
maxRetries: 1
136
concurrency: 3
147

15-
env:
16-
# PAT: ${{ .secrets.testKey }}
17-
CACHE_DIR: m2_cache_dir
18-
TARGET_OS: linux
19-
20-
cacheKey: '{{ checksum "pom.xml" }}'
21-
cacheDirectories:
22-
- ${CACHE_DIR}
23-
24-
shell: bash
25-
268
pre:
27-
# Download and install packages in the CACHE_DIR.
28-
# Skip execution of the tests in the pre step
29-
- mvn -Dmaven.repo.local=${CACHE_DIR} -Dmaven.test.skip=true clean install
30-
31-
post:
32-
- cat yaml/linux/junit_hyperexecute_autosplit_sample.yaml
9+
- mvn clean install
3310

3411
mergeArtifacts: true
3512

36-
uploadArtefacts:
37-
- name: Final-Report
38-
path:
39-
- target/site/**
40-
- name: Surefire-Report
41-
path:
42-
- target/surefire-reports/**
43-
44-
report: true
45-
partialReports:
46-
location: target/surefire-reports/html
47-
type: html
48-
frameworkName: extent
49-
5013
testDiscovery:
5114
type: raw
5215
mode: dynamic
5316
command: grep 'public class' src/test/java/hyperexecute/*.java | awk '{print$3}'
5417

5518
testRunnerCommand: mvn -Dplatname=linux -Dmaven.repo.local=m2_cache_dir -Dtest=$test test site surefire-report:report
5619

20+
retryOnFailure: true
21+
maxRetries: 1
22+
5723
jobLabel: [selenium-junit, linux, autosplit]
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,17 @@
11
---
22
version: 0.1
3-
globalTimeout: 150
4-
testSuiteTimeout: 150
5-
testSuiteStep: 150
6-
73
runson: linux
8-
retryOnFailure: true
9-
10-
maxRetries: 1
11-
concurrency: 3
12-
13-
env:
14-
# PAT: ${{ .secrets.testKey }}
15-
CACHE_DIR: m2_cache_dir
16-
TARGET_OS: linux
17-
18-
cacheKey: '{{ checksum "pom.xml" }}'
19-
cacheDirectories:
20-
- ${CACHE_DIR}
214

225
matrix:
236
classname: ["SelPlayGroundTest1", "SelPlayGroundTest2", "SelPlayGroundTest3" ]
247

25-
shell: bash
26-
278
pre:
28-
# Download and install packages in the CACHE_DIR.
29-
# Skip execution of the tests in the pre step
30-
- mvn -Dmaven.repo.local=${CACHE_DIR} -Dmaven.test.skip=true clean install
31-
32-
post:
33-
- cat yaml/linux/junit_hyperexecute_matrix_sample.yaml
34-
35-
mergeArtifacts: true
36-
37-
uploadArtefacts:
38-
- name: Final-Report
39-
path:
40-
- target/site/**
41-
- name: Surefire-Report
42-
path:
43-
- target/surefire-reports/**
44-
45-
report: true
46-
partialReports:
47-
location: target/surefire-reports/html
48-
type: html
49-
frameworkName: extent
9+
- mvn clean install
5010

5111
testSuites:
5212
- mvn -Dplatname=linux -Dmaven.repo.local=m2_cache_dir -Dtest=$classname test site surefire-report:report
5313

14+
retryOnFailure: true
15+
maxRetries: 1
16+
5417
jobLabel: [selenium-junit, linux, matrix]
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,12 @@
11
---
22
version: 0.1
3-
globalTimeout: 150
4-
testSuiteTimeout: 150
5-
testSuiteStep: 150
6-
73
runson: mac
84

95
autosplit: true
10-
retryOnFailure: true
11-
12-
maxRetries: 1
136
concurrency: 3
147

15-
env:
16-
# PAT: ${{ .secrets.testKey }}
17-
CACHE_DIR: m2_cache_dir
18-
TARGET_OS: MacOS Catalina
19-
20-
# Dependency caching for Windows
21-
cacheKey: '{{ checksum "pom.xml" }}'
22-
cacheDirectories:
23-
- ${CACHE_DIR}
24-
25-
shell: bash
26-
278
pre:
28-
# Download and install packages in the CACHE_DIR.
29-
# Skip execution of the tests in the pre step
30-
- mvn -Dmaven.repo.local=${CACHE_DIR} -Dmaven.test.skip=true clean install
31-
32-
post:
33-
- cat yaml/mac/junit_hyperexecute_autosplit_sample.yaml
34-
35-
mergeArtifacts: true
36-
37-
uploadArtefacts:
38-
- name: Final-Report
39-
path:
40-
- target/site/**
41-
- name: Surefire-Report
42-
path:
43-
- target/surefire-reports/**
44-
45-
report: true
46-
partialReports:
47-
location: target/surefire-reports/html
48-
type: html
49-
frameworkName: extent
9+
- mvn clean install
5010

5111
testDiscovery:
5212
type: raw
@@ -55,4 +15,7 @@ testDiscovery:
5515

5616
testRunnerCommand: mvn -Dplatname=mac -Dmaven.repo.local=m2_cache_dir -Dtest=$test test site surefire-report:report
5717

18+
retryOnFailure: true
19+
maxRetries: 1
20+
5821
jobLabel: [selenium-junit, mac, autosplit]
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,17 @@
11
---
22
version: 0.1
3-
globalTimeout: 150
4-
testSuiteTimeout: 150
5-
testSuiteStep: 150
6-
73
runson: mac
8-
retryOnFailure: true
9-
10-
maxRetries: 1
11-
concurrency: 3
12-
13-
env:
14-
# PAT: ${{ .secrets.testKey }}
15-
CACHE_DIR: m2_cache_dir
16-
TARGET_OS: MacOS Catalina
17-
18-
# Dependency caching for Windows
19-
cacheKey: '{{ checksum "pom.xml" }}'
20-
cacheDirectories:
21-
- ${CACHE_DIR}
224

235
matrix:
246
classname: ["SelPlayGroundTest1", "SelPlayGroundTest2", "SelPlayGroundTest3" ]
257

26-
shell: bash
27-
288
pre:
29-
# Download and install packages in the CACHE_DIR.
30-
# Skip execution of the tests in the pre step
319
- mvn -Dmaven.repo.local=${CACHE_DIR} -Dmaven.test.skip=true clean install
3210

33-
post:
34-
- cat yaml/mac/junit_hyperexecute_matrix_sample.yaml
35-
36-
mergeArtifacts: true
37-
38-
uploadArtefacts:
39-
- name: Final-Report
40-
path:
41-
- target/site/**
42-
- name: Surefire-Report
43-
path:
44-
- target/surefire-reports/**
45-
46-
report: true
47-
partialReports:
48-
location: target/surefire-reports/html
49-
type: html
50-
frameworkName: extent
51-
5211
testSuites:
5312
- mvn -Dplatname=mac -Dmaven.repo.local=m2_cache_dir -Dtest=$classname test site surefire-report:report
5413

14+
retryOnFailure: true
15+
maxRetries: 1
16+
5517
jobLabel: [selenium-junit, mac, matrix]

0 commit comments

Comments
 (0)