-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Marek Fedorovic
committed
Feb 20, 2024
1 parent
cc300bb
commit 115137b
Showing
12 changed files
with
119 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
dev-home | ||
dist | ||
node_modules | ||
tmp | ||
tmp* | ||
.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
version: "1.0" | ||
projectName: "K6 Tests for Node-1" | ||
lockManager: | ||
enabled: false | ||
testSuites: | ||
- name: "K6 tests for 'GET /time'" | ||
id: node-1-k6-tests | ||
|
||
deployment: | ||
graph: | ||
testApp: | ||
name: "Performance Test App for Node 1" | ||
id: "graph-perf-test-app" | ||
location: | ||
type: LOCAL | ||
deploy: | ||
command: deployment/pit/deploy.sh | ||
params: | ||
- 'node-1' # The name of target service. Deployer will compose it into the full URL | ||
statusCheck: | ||
command: deployment/pit/is-deployment-ready.sh | ||
undeploy: | ||
timeoutSeconds: 120 | ||
command: deployment/pit/undeploy.sh | ||
components: | ||
- name: Node 1 | ||
id: node-1 | ||
deploy: | ||
command: deployment/pit/deploy.sh | ||
statusCheck: | ||
command: deployment/pit/is-deployment-ready.sh | ||
undeploy: | ||
timeoutSeconds: 120 | ||
command: deployment/pit/undeploy.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
version: "1.0" | ||
projectName: "Tests for node-1 app" | ||
|
||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | ||
# The lock manager is part of PIT toolkit. CI will already have it available | ||
# This optional config section is here only to indicate that lock manager | ||
# should be deployed. | ||
lockManager: | ||
enabled: false | ||
|
||
testSuites: | ||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | ||
- name: Default tests for Node 1 | ||
id: node-1-default | ||
|
||
deployment: | ||
graph: | ||
testApp: | ||
name: Test App for Node 1 | ||
id: node-1-test-app | ||
location: | ||
path: node-1/pit-test-app | ||
deploy: | ||
timeoutSeconds: 60 | ||
command: deployment/pit/deploy.sh | ||
statusCheck: | ||
timeoutSeconds: 60 | ||
command: deployment/pit/is-deployment-ready.sh | ||
undeploy: | ||
timeoutSeconds: 120 | ||
command: deployment/pit/undeploy.sh | ||
|
||
components: | ||
- name: Node 1 | ||
id: node-1 | ||
deploy: | ||
timeoutSeconds: 60 | ||
command: deployment/pit/deploy.sh | ||
statusCheck: | ||
timeoutSeconds: 60 | ||
command: deployment/pit/is-deployment-ready.sh | ||
undeploy: | ||
timeoutSeconds: 120 | ||
command: deployment/pit/undeploy.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
version: "1.0" | ||
projectName: "Tests for node-1 app" | ||
|
||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | ||
# The lock manager is part of PIT toolkit. CI will already have it available | ||
# This optional config section is here only to indicate that lock manager | ||
# should be deployed. | ||
lockManager: | ||
enabled: false | ||
|
||
testSuites: | ||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | ||
- name: K6 testset for Node 1 | ||
id: node-1-k6-tests | ||
location: | ||
type: REMOTE | ||
gitRepository: git://127.0.0.1:60100/graph-perf-test-app.git | ||
testSuiteIds: [] # Empty array is interpreted as "run all tests" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters