-
Notifications
You must be signed in to change notification settings - Fork 189
Fixed indexing of warnings for documentation reporter #373
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
7 commits
Select commit
Hold shift + click to select a range
7b5e02e
Fixed indexing of warnings for documentation reporter
Pazus 7f13ce0
make warnings uniformly indented
Pazus 6efe324
Merge branch 'develop' into issue-350
jgebal 6fcff0e
fixed test
Pazus 534545d
fixed lpad determination
Pazus 8463c00
Merge branch 'develop' into issue-350
Pazus 7033622
Merge branch 'develop' into issue-350
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
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
56 changes: 56 additions & 0 deletions
56
tests/ut_reporters/ut_documentation_reporter.reportMultipleWarnings.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,56 @@ | ||
| set termout off | ||
| create or replace package tst_documrep_mult_warn as | ||
| --%suite | ||
|
|
||
| --%test | ||
| procedure test1; | ||
| end; | ||
| / | ||
|
|
||
| create or replace package body tst_documrep_mult_warn as | ||
| procedure test1 is begin commit; end; | ||
| end; | ||
| / | ||
| create or replace package tst_documrep_mult_warn2 as | ||
| --%suite | ||
|
|
||
| --%test | ||
| procedure test1; | ||
| end; | ||
| / | ||
|
|
||
| create or replace package body tst_documrep_mult_warn2 as | ||
| procedure test1 is begin commit; 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'[%Warnings: | ||
| %1)%tst_documrep_mult_warn% | ||
| %2)%tst_documrep_mult_warn%]'; | ||
|
|
||
| --act | ||
| select * | ||
| bulk collect into l_output_data | ||
| from table(ut.run(ut_varchar2_list('tst_documrep_mult_warn','tst_documrep_mult_warn2'),ut_xunit_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_documrep_mult_warn; | ||
| drop package tst_documrep_mult_warn2; |
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.
Can you make both
error_noandwarning_nouniformly indentedI don't expect any report to have more than 9999 errors or warnings in it.
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.
Done. It is already done for errors, so I made it only for warnings