Changes between Initial Version and Version 2 of Ticket #1689


Ignore:
Timestamp:
Jun 15, 2018, 6:38:54 AM (6 years ago)
Author:
Bang Pham Huu
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1689

    • Property Cc bbell added
    • Property Owner changed from bbell to dkamov
    • Property Status newassigned
    • Property Milestone 9.59.7
  • Ticket #1689 – Description

    initial v2  
    66+ Test number prefix (e.g: '''001-'''arcosbig.rasql).
    77+ Test errors needs '''.error.rasql''' to recognize (current I need to check oracle file to know this test is error, not only in my system).
     8
     9@Dragi: The ticket is about checking rasdaman/systemtest with any `queries` folders and add the prefix with increasing numbers if they don't exist, e.g:
     10
     11
     12{{{
     13systemtest/testcases_mandatory/test_clipping/queries/cline_bothvertout.rasql
     14
     15->
     16
     17systemtest/testcases_mandatory/test_clipping/queries/001-cline_bothvertout.rasql
     18}}}
     19
     20and this is more frustrating, check folder oracles of test cases without prefix numbers and see which oracles are expected error cases. Add ".error." before the file extension for the corresponding query in queries folder and oracle file in oracle folder, e.g:
     21
     22Open this file, it is an oracle with expected error from Rasql query, but there is no way to tell it is working query or non working query from its name:
     23
     24{{{
     25
     26systemtest/testcases_mandatory/test_clipping/oracle/e_clinestr_rg_card1.oracle
     27
     28rename to (note the prefix increasing number)
     29
     30systemtest/testcases_mandatory/test_clipping/oracle/001-e_clinestr_rg_card1.error.oracle
     31
     32and
     33
     34
     35systemtest/testcases_mandatory/test_clipping/queries/001-e_clinestr_rg_card1.error.rasql
     36}}}
     37