| OLD | NEW |
| 1 #library('WebDBTest'); | 1 #library('WebDBTest'); |
| 2 #import('../../pkg/unittest/unittest.dart'); | 2 #import('../../pkg/unittest/unittest.dart'); |
| 3 #import('../../pkg/unittest/html_config.dart'); | 3 #import('../../pkg/unittest/html_config.dart'); |
| 4 #import('dart:html'); | 4 #import('dart:html'); |
| 5 | 5 |
| 6 void fail(message) { | 6 void fail(message) { |
| 7 guardAsync(() { | 7 guardAsync(() { |
| 8 Expect.fail(message); | 8 expect(false, isTrue, reason: message); |
| 9 }); | 9 }); |
| 10 } | 10 } |
| 11 | 11 |
| 12 Future<SQLTransaction> createTransaction(Database db) { | 12 Future<SQLTransaction> createTransaction(Database db) { |
| 13 final completer = new Completer<SQLTransaction>(); | 13 final completer = new Completer<SQLTransaction>(); |
| 14 | 14 |
| 15 db.transaction((SQLTransaction transaction) { | 15 db.transaction((SQLTransaction transaction) { |
| 16 completer.complete(transaction); | 16 completer.complete(transaction); |
| 17 }); | 17 }); |
| 18 | 18 |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 | 87 |
| 88 main() { | 88 main() { |
| 89 useHtmlConfiguration(); | 89 useHtmlConfiguration(); |
| 90 | 90 |
| 91 test('Web Database', () { | 91 test('Web Database', () { |
| 92 final tableName = 'test_table'; | 92 final tableName = 'test_table'; |
| 93 final columnName = 'test_data'; | 93 final columnName = 'test_data'; |
| 94 | 94 |
| 95 final db = window.openDatabase('test_db', '1.0', 'test_db', 1024 * 1024); | 95 final db = window.openDatabase('test_db', '1.0', 'test_db', 1024 * 1024); |
| 96 | 96 |
| 97 Expect.isNotNull(db, 'Unable to open database'); | 97 expect(db, isNotNull, reason: 'Unable to open database'); |
| 98 | 98 |
| 99 createTransaction(db) | 99 createTransaction(db) |
| 100 // Attempt to clear out any tables which may be lurking from previous | 100 // Attempt to clear out any tables which may be lurking from previous |
| 101 // runs. | 101 // runs. |
| 102 .chain(dropTable(tableName, true)) | 102 .chain(dropTable(tableName, true)) |
| 103 .chain(createTable(tableName, columnName)) | 103 .chain(createTable(tableName, columnName)) |
| 104 .chain(insert(tableName, columnName, 'Some text data')) | 104 .chain(insert(tableName, columnName, 'Some text data')) |
| 105 .chain(queryTable(tableName, (resultSet) { | 105 .chain(queryTable(tableName, (resultSet) { |
| 106 guardAsync(() { | 106 guardAsync(() { |
| 107 Expect.equals(1, resultSet.rows.length); | 107 expect(resultSet.rows.length, 1); |
| 108 var row = resultSet.rows.item(0); | 108 var row = resultSet.rows.item(0); |
| 109 Expect.isTrue(row.containsKey(columnName)); | 109 expect(row.containsKey(columnName), isTrue); |
| 110 Expect.equals('Some text data', row[columnName]); | 110 expect(row[columnName], 'Some text data'); |
| 111 }); | 111 }); |
| 112 })) | 112 })) |
| 113 .chain(dropTable(tableName)) | 113 .chain(dropTable(tableName)) |
| 114 .then(expectAsync1((tx) {})); | 114 .then(expectAsync1((tx) {})); |
| 115 }); | 115 }); |
| 116 } | 116 } |
| OLD | NEW |