-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add tests * improve old tests * add test to bad date
- Loading branch information
1 parent
f4ed42b
commit f98f5fa
Showing
21 changed files
with
2,177 additions
and
370 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{ | ||
"description": "Function: getCatalogersListOfLogs, gets 3 uniq catalogers from 3 logs (MATCH_LOG and MERGE_LOG)", | ||
"description": "Function: getListOfCatalogers, gets 3 uniq catalogers from 3 logs (MATCH_LOG and MERGE_LOG)", | ||
"only": false, | ||
"skip": false, | ||
"functionName": "getCatalogersListOfLogs", | ||
"functionName": "getListOfCatalogers", | ||
"preFillDb": true, | ||
"params": [] | ||
} |
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{ | ||
"description": "Function: getExpandedListOfLogs - Empty params get all 3", | ||
"description": "Function: getExpandedListOfLogs - params {logItemTypes: [MERGE_LOG, MATCH_LOG]} get all 3", | ||
"only": false, | ||
"skip": false, | ||
"functionName": "getExpandedListOfLogs", | ||
"preFillDb": true, | ||
"params": {"logItemTypes": ["MERGE_LOG"]} | ||
"params": {"logItemTypes": ["MERGE_LOG", "MATCH_LOG"]} | ||
} |
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,8 +1,8 @@ | ||
{ | ||
"description": "Function: getExpandedListOfLogs - logItemType and default dates - get 2/3", | ||
"only": true, | ||
"description": "Function: getExpandedListOfLogs - params {logItemTypes: [MERGE_LOG]} get 2", | ||
"only": false, | ||
"skip": false, | ||
"functionName": "getExpandedListOfLogs", | ||
"preFillDb": true, | ||
"params": {"logItemTypes": ["MERGE_LOG"], "dateAfter": "Sat Jan 01 2000 02:00:00 GMT+0200 (Eastern European Standard Time)", "dateBefore": "Fri Oct 20 2023 16:37:00 GMT+0300 (Eastern European Summer Time)"} | ||
"params": {"logItemTypes": ["MERGE_LOG"]} | ||
} |
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{ | ||
"description": "Function: getExpandedListOfLogs - logItemType and default dates - get 2/3", | ||
"only": true, | ||
"description": "Function: getExpandedListOfLogs - params {catalogers: [IMP_TEST1]} get 1", | ||
"only": false, | ||
"skip": false, | ||
"functionName": "getExpandedListOfLogs", | ||
"preFillDb": true, | ||
"params": {"logItemTypes": ["MERGE_LOG"], "dateAfter": "2023-08-07T01:24:00", "dateBefore": "Fri Oct 20 2023 16:37:00 GMT+0300 (Eastern European Summer Time)"} | ||
"params": {"catalogers": ["IMP_TEST1"]} | ||
} |
Oops, something went wrong.