| OLD | NEW |
| 1 library CacheTest; | 1 library CacheTest; |
| 2 import '../../pkg/unittest/lib/unittest.dart'; | 2 import '../../pkg/unittest/lib/unittest.dart'; |
| 3 import '../../pkg/unittest/lib/html_config.dart'; | 3 import '../../pkg/unittest/lib/html_individual_config.dart'; |
| 4 import 'dart:html'; | 4 import 'dart:html'; |
| 5 | 5 |
| 6 main() { | 6 main() { |
| 7 useHtmlConfiguration(); | 7 useHtmlIndividualConfiguration(); |
| 8 test('ApplicationCache', () { | 8 |
| 9 ApplicationCache appCache = window.applicationCache; | 9 group('supported', () { |
| 10 expect(cacheStatusToString(appCache.status), equals("UNCACHED")); | 10 test('supported', () { |
| 11 expect(ApplicationCache.supported, true); |
| 12 }); |
| 11 }); | 13 }); |
| 14 |
| 15 group('ApplicationCache', () { |
| 16 test('ApplicationCache', () { |
| 17 var expectation = ApplicationCache.supported ? returnsNormally : throws; |
| 18 expect(() { |
| 19 ApplicationCache appCache = window.applicationCache; |
| 20 expect(cacheStatusToString(appCache.status), "UNCACHED"); |
| 21 }, expectation); |
| 22 |
| 23 }); |
| 24 }); |
| 25 |
| 12 } | 26 } |
| 13 | 27 |
| 14 String cacheStatusToString(int status) { | 28 String cacheStatusToString(int status) { |
| 15 switch (status) { | 29 switch (status) { |
| 16 case ApplicationCache.UNCACHED: // UNCACHED == 0 | 30 case ApplicationCache.UNCACHED: // UNCACHED == 0 |
| 17 return 'UNCACHED'; | 31 return 'UNCACHED'; |
| 18 case ApplicationCache.IDLE: // IDLE == 1 | 32 case ApplicationCache.IDLE: // IDLE == 1 |
| 19 return 'IDLE'; | 33 return 'IDLE'; |
| 20 case ApplicationCache.CHECKING: // CHECKING == 2 | 34 case ApplicationCache.CHECKING: // CHECKING == 2 |
| 21 return 'CHECKING'; | 35 return 'CHECKING'; |
| 22 case ApplicationCache.DOWNLOADING: // DOWNLOADING == 3 | 36 case ApplicationCache.DOWNLOADING: // DOWNLOADING == 3 |
| 23 return 'DOWNLOADING'; | 37 return 'DOWNLOADING'; |
| 24 case ApplicationCache.UPDATEREADY: // UPDATEREADY == 4 | 38 case ApplicationCache.UPDATEREADY: // UPDATEREADY == 4 |
| 25 return 'UPDATEREADY'; | 39 return 'UPDATEREADY'; |
| 26 case ApplicationCache.OBSOLETE: // OBSOLETE == 5 | 40 case ApplicationCache.OBSOLETE: // OBSOLETE == 5 |
| 27 return 'OBSOLETE'; | 41 return 'OBSOLETE'; |
| 28 default: | 42 default: |
| 29 return 'UNKNOWN CACHE STATUS'; | 43 return 'UNKNOWN CACHE STATUS'; |
| 30 }; | 44 }; |
| 31 } | 45 } |
| OLD | NEW |