Changes between Version 12 and Version 13 of LCS_specification


Ignore:
Timestamp:
04/15/2020 08:38:21 AM (6 years ago)
Author:
ally
Comment:

Added testing instructions.

Legend:

Unmodified
Added
Removed
Modified
  • LCS_specification

    v12 v13  
    136136 
    137137== Test Plan == 
     138''' Test Setup ''' 
     139* From the {{{ database }}} folder of the LCSv1 web2py application directory. Run the following command to start sqlite3 command line.  
     140{{{ sqlite3 storage.sqlite }}}  
     141* Clear the data in {{{ closures }}} table in sqlite3 using the command  
     142{{{ delete from closures; }}} 
     143* Download the attached file {{{ search_test_data.csv }}} and place it under the {{{ database }}} folder in LCSv1 web2py application directory.  
     144* From the {{{ database }}} folder, run the following command to import the testing data.  
     145{{{ .mode csv  
     146.import search_test_data.csv closures }}} 
     147* Run the following command to confirm the data is imported correctly.  
     148{{{ select * from closures; }}} 
     149It should have all the entries from id 63 to 71 ( 9 entries total)  
     150* Run the LCSv1 web2py application and open the search page on the browser.  
     151* Start testing according to the test cases in the Test Case Table below.  
     152Check if the search returns the correct entries.  
     153 
    138154[[BR]]Database Records 
    139155 
     
    153169}}} 
    154170 
     171[[BR]] ''' Test Case Table '''  
    155172|| Test Case || Description || Search Input || Expected Search Results (closures.id) || 
    156173|| 1a || closureid not empty,  all others empty || closureid = "T55AA" || 63 ||