Changes between Version 19 and Version 20 of LCS_specification
- Timestamp:
- 04/15/2020 09:43:29 AM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
LCS_specification
v19 v20 139 139 * From the {{{ database }}} folder of the LCSv1 web2py application directory. Run the following command to start sqlite3 command line. 140 140 {{{ 141 sqlite3 storage.sqlite141 $ sqlite3 storage.sqlite 142 142 }}} 143 143 * Clear the data in {{{ closures }}} table in sqlite3 using the command 144 144 {{{ 145 delete from closures;146 }} 145 >> delete from closures; 146 }}} 147 147 * Download the attached file {{{ search_test_data.csv }}} and place it under the {{{ database }}} folder in LCSv1 web2py application directory. 148 148 * From the {{{ database }}} folder, run the following command to import the testing data. 149 149 {{{ 150 .mode csv151 .import search_test_data.csv closures150 >> .mode csv 151 >> .import search_test_data.csv closures 152 152 }}} 153 153 * Run the following command to confirm the data is imported correctly. 154 154 {{{ 155 select * from closures;155 >> select * from closures; 156 156 }}} 157 It should have all the entries from id 63 to 71 ( 9 entries total)157 It should have all the entries from id 63 to 71 ( 9 entries total) 158 158 * Run the LCSv1 web2py application and open the search page on the browser. 159 * Start testing according to the test cases in the Test Case Table below. 160 Check if the search returns the correct entries. 159 * Start testing according to the test cases in the Test Case Table below. Check if the search returns the correct entries. 161 160 162 161 [[BR]]Database Records
