-
Notifications
You must be signed in to change notification settings - Fork 189
Fixed stack parsing when test failed with ut.fail
#380
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
13 commits
Select commit
Hold shift + click to select a range
40ba680
Fixed stack parsing when test failed with `ut.fail` or by broken expe…
Pazus 24ac6dc
Merge branch 'develop' into issue-378
Pazus a326d74
Merge branch 'develop' into issue-378
Pazus 953551c
fixed pattern for 11g and 12.1
Pazus 1093394
Merge branch 'develop' into issue-378
Pazus 01b59b4
take into account utassert and utassert2 packages from migration project
Pazus 4ae671f
simplified pattern
Pazus 88a0b83
test
Pazus 10796ff
Merge branch 'develop' into issue-378
Pazus a90a408
try fix
Pazus a00ba91
removed debugging info
Pazus 2c168f2
Merge branch 'develop' into issue-378
jgebal 6fd6eff
Merge branch 'develop' into issue-378
Pazus 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
Fixed stack parsing when test failed with
ut.fail or by broken expe…
…ctation
- Loading branch information
commit 40ba68007c9fba910a54a09584be732a03f0423b
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
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
41 changes: 41 additions & 0 deletions
41
tests/ut_expectations/ut_expectation_processor.stackOnFailedTest.sql
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,41 @@ | ||
| set termout off | ||
| create or replace package tst_stack_on_failed_test as | ||
| --%suite | ||
|
|
||
| --%test | ||
| procedure test; | ||
| end; | ||
| / | ||
|
|
||
| create or replace package body tst_stack_on_failed_test as | ||
| procedure test is begin ut.expect(1).to_equal(2); end; | ||
| end; | ||
| / | ||
|
|
||
| set termout on | ||
|
|
||
| declare | ||
| l_test_report ut_varchar2_list; | ||
| l_output_data ut_varchar2_list; | ||
| l_output varchar2(32767); | ||
| l_expected varchar2(32767); | ||
| begin | ||
| l_expected := q'[%Failures:%at "UT3.TST_STACK_ON_FAIL%", line 2%]'; | ||
|
|
||
| --act | ||
| select * | ||
| bulk collect into l_output_data | ||
| from table(ut.run('tst_stack_on_failed_test',ut_documentation_reporter())); | ||
|
|
||
| l_output := ut_utils.table_to_clob(l_output_data); | ||
|
|
||
| --assert | ||
| if l_output like l_expected then | ||
| :test_result := ut_utils.tr_success; | ||
| else | ||
| dbms_output.put_line('Actual:"'||l_output||'"'); | ||
| end if; | ||
| end; | ||
| / | ||
|
|
||
| drop package tst_stack_on_failed_test; |
41 changes: 41 additions & 0 deletions
41
tests/ut_expectations/ut_expectation_processor.stackOnUtFail.sql
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,41 @@ | ||
| set termout off | ||
| create or replace package tst_stack_on_fail as | ||
| --%suite | ||
|
|
||
| --%test | ||
| procedure test; | ||
| end; | ||
| / | ||
|
|
||
| create or replace package body tst_stack_on_fail as | ||
| procedure test is begin ut.fail('test failure'); end; | ||
| end; | ||
| / | ||
|
|
||
| set termout on | ||
|
|
||
| declare | ||
| l_test_report ut_varchar2_list; | ||
| l_output_data ut_varchar2_list; | ||
| l_output varchar2(32767); | ||
| l_expected varchar2(32767); | ||
| begin | ||
| l_expected := q'[%Failures:%at "UT3.TST_STACK_ON_FAIL%", line 2%]'; | ||
|
|
||
| --act | ||
| select * | ||
| bulk collect into l_output_data | ||
| from table(ut.run('tst_stack_on_fail',ut_documentation_reporter())); | ||
|
|
||
| l_output := ut_utils.table_to_clob(l_output_data); | ||
|
|
||
| --assert | ||
| if l_output like l_expected then | ||
| :test_result := ut_utils.tr_success; | ||
| else | ||
| dbms_output.put_line('Actual:"'||l_output||'"'); | ||
| end if; | ||
| end; | ||
| / | ||
|
|
||
| drop package tst_stack_on_fail; | ||
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This test is failing on 11g:
https://travis-ci.org/utPLSQL/utPLSQL/jobs/249332892#L3583
And on 12.1:
https://travis-ci.org/utPLSQL/utPLSQL/jobs/249332893#L3565