Skip to content

Commit

Permalink
More tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nixel2007 committed Dec 19, 2024
1 parent 4d1ce54 commit 42bbfc7
Show file tree
Hide file tree
Showing 3 changed files with 104 additions and 92 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,10 @@ void testCreateJobConfigurationObject() throws IOException {
assertThat(jobConfiguration.getSmokeTestOptions().getVrunnerSettings()).contains("./tools/vrunner-smoke.json");
assertThat(jobConfiguration.getSmokeTestOptions().isPublishToAllureReport()).isFalse();
assertThat(jobConfiguration.getSmokeTestOptions().isPublishToJUnitReport()).isTrue();
assertThat(jobConfiguration.getSmokeTestOptions().getCoverage()).isFalse();
assertThat(jobConfiguration.getSmokeTestOptions().getCoverage()).isTrue();
assertThat(jobConfiguration.getSmokeTestOptions().getDbgsPort()).isEqualTo(1555);

assertThat(jobConfiguration.getYaxunitOptions().getDbgsPort()).isEqualTo(1550);

assertThat(jobConfiguration.getInitInfoBaseOptions().getRunMigration()).isFalse();
assertThat(jobConfiguration.getInitInfoBaseOptions().getAdditionalInitializationSteps()).contains("vanessa --settings ./tools/vrunner.first.json");
Expand Down Expand Up @@ -118,7 +121,7 @@ void testEdtAgentLabel() throws IOException {
assertThat(jobConfiguration.edtAgentLabel()).isEqualTo("[email protected]:x86_64");
}

@Disabled
@Test
void testInfoBaseFromFiles() throws IOException {
// given
String config = IOUtils.resourceToString(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ public class EnvUtils implements EnvironmentAction {

public String NODE_NAME = "node";
public String WORKSPACE = "ws";
public String BRANCH_NAME = "master";

@Override
public EnvVars getEnvironment() throws IOException, InterruptedException {
Expand Down
188 changes: 98 additions & 90 deletions test/unit/resources/jobConfiguration.json
Original file line number Diff line number Diff line change
@@ -1,91 +1,99 @@
{
"v8version": "8.3.14.1944",
"edtVersion": "2021.3.4:x86_64",
"secrets": {
"storage": "1234"
},
"coverage": {
"dbgsPath": "/opt/1cv8/current/dbgs"
},
"stages": {
"syntaxCheck": true
},
"timeout": {
"zipInfoBase": 123
},
"initInfobase": {
"runMigration": false,
"additionalInitializationSteps": [
"vanessa --settings ./tools/vrunner.first.json"
],
"extensions": [
{
"name": "YAXUnit",
"initMethod": "fromSource",
"path": "./src/cfe/YAXUnit",
"stages": ["yaxunit"]
},
{
"name": "BDD",
"initMethod": "fromSource",
"path": "./src/cfe/bdd",
"stages": ["bdd"]
},
{
"name": "mods",
"initMethod": "fromSource",
"path": "./src/cfe/mods"
},
{
"name": "mods2",
"initMethod": "fromSource",
"path": "./src/cfe/mods2",
"stages": ["initInfoBase"]
}
]
},
"sonarqube": {
"sonarQubeInstallation": "qa",
"branchAnalysisConfiguration": "auto"
},
"syntaxCheck": {
"checkModes": [
"-ThickClient",
"-ThinClient",
"-WebClient",
"-Server"
]
},
"resultsTransform": {
"transformer": "stebi",
"genericIssueFormat": "Generic_Issue",
"removeSupport": false
},
"smoke": {
"vrunnerSettings": "./tools/vrunner-smoke.json",
"publishToAllureReport": false,
"publishToJUnitReport": true
},
"notifications": {
"email": {
"onAlways": true,
"alwaysOptions": {
"attachLog": true,
"directRecipients": [
"[email protected]",
"[email protected]"
]
},
"failureOptions": {
"recipientProviders": [
"developers"
]
}
},
"telegram": {
"onAlways": false,
"onFailure": true
}
},
"logosConfig": "logger.rootLogger=DEBUG"
{
"v8version": "8.3.14.1944",
"edtVersion": "2021.3.4:x86_64",
"secrets": {
"storage": "1234"
},
"coverage": {
"dbgsPath": "/opt/1cv8/current/dbgs"
},
"stages": {
"syntaxCheck": true
},
"timeout": {
"zipInfoBase": 123
},
"initInfobase": {
"runMigration": false,
"additionalInitializationSteps": [
"vanessa --settings ./tools/vrunner.first.json"
],
"extensions": [
{
"name": "YAXUnit",
"initMethod": "fromSource",
"path": "./src/cfe/YAXUnit",
"stages": [
"yaxunit"
]
},
{
"name": "BDD",
"initMethod": "fromSource",
"path": "./src/cfe/bdd",
"stages": [
"bdd"
]
},
{
"name": "mods",
"initMethod": "fromSource",
"path": "./src/cfe/mods"
},
{
"name": "mods2",
"initMethod": "fromSource",
"path": "./src/cfe/mods2",
"stages": [
"initInfoBase"
]
}
]
},
"sonarqube": {
"sonarQubeInstallation": "qa",
"branchAnalysisConfiguration": "auto"
},
"syntaxCheck": {
"checkModes": [
"-ThickClient",
"-ThinClient",
"-WebClient",
"-Server"
]
},
"resultsTransform": {
"transformer": "stebi",
"genericIssueFormat": "Generic_Issue",
"removeSupport": false
},
"smoke": {
"vrunnerSettings": "./tools/vrunner-smoke.json",
"publishToAllureReport": false,
"publishToJUnitReport": true,
"coverage": true,
"dbgsPort": 1555
},
"notifications": {
"email": {
"onAlways": true,
"alwaysOptions": {
"attachLog": true,
"directRecipients": [
"[email protected]",
"[email protected]"
]
},
"failureOptions": {
"recipientProviders": [
"developers"
]
}
},
"telegram": {
"onAlways": false,
"onFailure": true
}
},
"logosConfig": "logger.rootLogger=DEBUG"
}

0 comments on commit 42bbfc7

Please sign in to comment.