This repository has been archived by the owner on Sep 3, 2024. It is now read-only.
-
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.
Merge pull request #33 from sbtqa/feature/32-relative-ref-collection
Add relative reference collection support
- Loading branch information
Showing
19 changed files
with
268 additions
and
190 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 |
---|---|---|
|
@@ -6,4 +6,6 @@ | |
*.iml | ||
.classpath | ||
.vscode/ | ||
.settings/ | ||
.settings/ | ||
.DS_Store | ||
**/.factorypath |
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
Binary file modified
BIN
+579 Bytes
(100%)
providers/excel-provider/src/test/resources/excell/TestData.xlsx
Binary file not shown.
Binary file modified
BIN
+645 Bytes
(100%)
providers/excel-provider/src/test/resources/excell/TestDataNew.xlsx
Binary file not shown.
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
109 changes: 47 additions & 62 deletions
109
providers/json-provider/src/test/resources/json/JsonP.jsonp
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,67 +1,52 @@ | ||
{ | ||
"testId": "@234234", | ||
"Nullable": null, | ||
"Common": { | ||
"price": 20.91, | ||
"gendata": "generate:Numeric:16", | ||
"gen gen": { | ||
"gendata": "generate:Numeric:16" | ||
}, | ||
"gendata reference": { | ||
"value": { | ||
"collection": "JsonP", | ||
"path": "Common.gen gen.gendata" | ||
}, | ||
"comment": "Ссылается на генерированные данные" | ||
}, | ||
"login": { | ||
"value": "user", | ||
"comment": "Логин пользователя" | ||
}, | ||
"password": { | ||
"value": "123qwe", | ||
"comment": "Пароль пользователя" | ||
}, | ||
"password2": { | ||
"value": { | ||
"collection": "JsonP", | ||
"path": "Params Group 1.password" | ||
}, | ||
"comment": "Пароль пользователя" | ||
}, | ||
"cyclic": { | ||
"value": { | ||
"collection": "JsonP", | ||
"path": "Common.cyclic" | ||
}, | ||
"comment": "Cyclic" | ||
} | ||
"testId": "@234234", | ||
"Nullable": null, | ||
"Common": { | ||
"price": 20.91, | ||
"gendata": "generate:Numeric:16", | ||
"gen gen": { | ||
"gendata": "generate:Numeric:16" | ||
}, | ||
"Params Group 1": { | ||
"login": { | ||
"value": { | ||
"collection": "JsonP", | ||
"path": "Common.password" | ||
}, | ||
"comment": "Логин пользователя" | ||
}, | ||
"password": { | ||
"value": { | ||
"collection": "JsonP", | ||
"path": "Common.password" | ||
}, | ||
"comment": "Another cool password" | ||
} | ||
"gendata reference": { | ||
"$ref": "JsonP:Common.gen gen.gendata", | ||
"comment": "Ссылается на генерированные данные" | ||
}, | ||
"MapTests": { | ||
"stringValue": "this is string", | ||
"singleCharValue": "c", | ||
"booleanValue": true, | ||
"integerValue": 42, | ||
"floatValue": 42.1, | ||
"doubleValue": 42.01, | ||
"nestedObjectValue": { | ||
"innerValue": "This is string from nested object" | ||
} | ||
"login": { | ||
"value": "user", | ||
"comment": "Логин пользователя" | ||
}, | ||
"password": { | ||
"value": "123qwe", | ||
"comment": "Пароль пользователя" | ||
}, | ||
"password2": { | ||
"$ref": "JsonP:Params Group 1.password", | ||
"comment": "Пароль пользователя" | ||
}, | ||
"cyclic": { | ||
"$ref": "JsonP:Common.cyclic", | ||
"comment": "Cyclic" | ||
} | ||
}, | ||
"Params Group 1": { | ||
"login": { | ||
"$ref": "JsonP:Common.password", | ||
"comment": "Логин пользователя" | ||
}, | ||
"password": { | ||
"$ref": "JsonP:Common.password", | ||
"comment": "Another cool password" | ||
} | ||
}, | ||
"MapTests": { | ||
"stringValue": "this is string", | ||
"singleCharValue": "c", | ||
"booleanValue": true, | ||
"integerValue": 42, | ||
"floatValue": 42.1, | ||
"doubleValue": 42.01, | ||
"nestedObjectValue": { | ||
"innerValue": "This is string from nested object" | ||
} | ||
} | ||
} |
Oops, something went wrong.