-
Notifications
You must be signed in to change notification settings - Fork 189
Add ability to run tests by part of a name. #1203
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
86d4d0a
Initial check-in.
lwasylow f1f6d71
Tidy up code to make sure we got distinct set of expanded tests.
lwasylow 1454221
Adding extra fields.
lwasylow ce4df28
Stage 3. Fixing error calls.
lwasylow 273962b
Fixing issue with a non visible tests.
lwasylow a753e66
Fixing ORA-600
lwasylow 0d8d34d
Cleanup Phase1.
lwasylow 95ddec1
Adding tests.
lwasylow 83dbdaa
Updating documentation.
lwasylow 52c0307
Addresing sonar issues
lwasylow 8f8d257
Extra tests and cleanup of old code.
lwasylow 12be123
Adding extra tests
lwasylow d5ee6ca
Updating SQL to expand paths and extract suites.
lwasylow 2db8d63
Addressing issue with reconstruct_cache knocking off other levels.
lwasylow d3396fe
Update tests for random order
lwasylow 02d41a6
Removing a hash function from api into utils package which is more su…
lwasylow 274d80a
Fixing ordering
lwasylow 3937737
Fixing a documentation
lwasylow 9296f38
Fixing indent
lwasylow 6ff7f38
Peer review changes
lwasylow ee7a98b
Moving a SQL to be more readable.
lwasylow a53cefa
Apply suggestions from code review
jgebal 011970f
Apply suggestions from code review
jgebal 71e07f9
Merge remote-tracking branch 'origin/develop' into feature/call_tests…
jgebal 221c2de
Address issue of not recognizing a correct nested level of suitepath.
lwasylow 870cfe4
Merge branch 'feature/call_tests_by_part_of_name' of https://github.c…
lwasylow 51439d8
Update documentation
lwasylow 0fc7ff6
Fixing issue where parition by only path caused a duplicate level 1 a…
lwasylow 647b830
Fixed issue with suites getting duplicated when running tests across …
jgebal File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next
Next commit
Initial check-in.
There is still no error handling.
- Loading branch information
commit 86d4d0a76475a8a2eb78c1a1ae72e930c3afbf33
There are no files selected for viewing
This file contains hidden or 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,42 @@ | ||
| create or replace type body ut_path_item as | ||
| /* | ||
| utPLSQL - Version 3 | ||
| Copyright 2016 - 2021 utPLSQL Project | ||
|
|
||
| Licensed under the Apache License, Version 2.0 (the "License"): | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
|
|
||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
|
|
||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| */ | ||
| constructor function ut_path_item(self in out nocopy ut_path_item, schema_name varchar2, object_name varchar2,procedure_name varchar2) return self as result is | ||
| begin | ||
| self.schema_name := schema_name; | ||
| self.object_name := object_name; | ||
| self.procedure_name := procedure_name; | ||
| return; | ||
| end; | ||
|
|
||
| constructor function ut_path_item(self in out nocopy ut_path_item, schema_name varchar2,suite_path varchar2) return self as result is | ||
| begin | ||
| self.schema_name := schema_name; | ||
| self.suite_path := suite_path; | ||
| return; | ||
| end; | ||
|
|
||
| constructor function ut_path_item(self in out nocopy ut_path_item, schema_name varchar2, object_name varchar2,procedure_name varchar2,suite_path varchar2) return self as result is | ||
| begin | ||
| self.schema_name := schema_name; | ||
| self.object_name := object_name; | ||
| self.procedure_name := procedure_name; | ||
| self.suite_path := suite_path; | ||
| return; | ||
| end; | ||
| end; | ||
| / | ||
This file contains hidden or 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,26 @@ | ||
| create or replace type ut_path_item as object ( | ||
| /* | ||
| utPLSQL - Version 3 | ||
| Copyright 2016 - 2021 utPLSQL Project | ||
|
|
||
| Licensed under the Apache License, Version 2.0 (the "License"): | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
|
|
||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
|
|
||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| */ | ||
| schema_name varchar2(4000), | ||
| object_name varchar2(250), | ||
| procedure_name varchar2(250), | ||
| suite_path varchar2(4000), | ||
| constructor function ut_path_item(self in out nocopy ut_path_item, schema_name varchar2, object_name varchar2,procedure_name varchar2) return self as result, | ||
| constructor function ut_path_item(self in out nocopy ut_path_item, schema_name varchar2,suite_path varchar2) return self as result, | ||
| constructor function ut_path_item(self in out nocopy ut_path_item, schema_name varchar2, object_name varchar2,procedure_name varchar2,suite_path varchar2) return self as result | ||
| ) | ||
| / |
This file contains hidden or 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,19 @@ | ||
| create or replace type ut_path_items as | ||
| /* | ||
| utPLSQL - Version 3 | ||
| Copyright 2016 - 2021 utPLSQL Project | ||
|
|
||
| Licensed under the Apache License, Version 2.0 (the "License"): | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
|
|
||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
|
|
||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| */ | ||
| table of ut_path_item | ||
| / |
This file contains hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.