| 
									
										
										
										
											2017-09-28 16:18:12 -07:00
										 |  |  | /** | 
					
						
							|  |  |  |  * @license | 
					
						
							|  |  |  |  * Copyright Google Inc. All Rights Reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Use of this source code is governed by an MIT-style license that can be | 
					
						
							|  |  |  |  * found in the LICENSE file at https://angular.io/license
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import {PrefetchAssetGroup} from '../src/assets'; | 
					
						
							|  |  |  | import {CacheDatabase} from '../src/db-cache'; | 
					
						
							|  |  |  | import {IdleScheduler} from '../src/idle'; | 
					
						
							|  |  |  | import {MockFileSystemBuilder, MockServerStateBuilder, tmpHashTable, tmpManifestSingleAssetGroup} from '../testing/mock'; | 
					
						
							|  |  |  | import {SwTestHarness, SwTestHarnessBuilder} from '../testing/scope'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-20 23:29:14 +02:00
										 |  |  | (function() { | 
					
						
							|  |  |  |   // Skip environments that don't support the minimum APIs needed to run the SW tests.
 | 
					
						
							|  |  |  |   if (!SwTestHarness.envIsSupported()) { | 
					
						
							|  |  |  |     return; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2017-09-28 16:18:12 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-20 23:29:14 +02:00
										 |  |  |   const dist = new MockFileSystemBuilder() | 
					
						
							|  |  |  |                    .addFile('/foo.txt', 'this is foo') | 
					
						
							|  |  |  |                    .addFile('/bar.txt', 'this is bar') | 
					
						
							|  |  |  |                    .build(); | 
					
						
							| 
									
										
										
										
											2017-09-28 16:18:12 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-20 23:29:14 +02:00
										 |  |  |   const manifest = tmpManifestSingleAssetGroup(dist); | 
					
						
							| 
									
										
										
										
											2017-09-28 16:18:12 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-20 23:29:14 +02:00
										 |  |  |   const server = new MockServerStateBuilder().withStaticFiles(dist).withManifest(manifest).build(); | 
					
						
							| 
									
										
										
										
											2017-09-28 16:18:12 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-20 23:29:14 +02:00
										 |  |  |   const scope = new SwTestHarnessBuilder().withServerState(server).build(); | 
					
						
							| 
									
										
										
										
											2017-09-28 16:18:12 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-20 23:29:14 +02:00
										 |  |  |   const db = new CacheDatabase(scope, scope); | 
					
						
							| 
									
										
										
										
											2017-09-28 16:18:12 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   describe('prefetch assets', () => { | 
					
						
							|  |  |  |     let group: PrefetchAssetGroup; | 
					
						
							|  |  |  |     let idle: IdleScheduler; | 
					
						
							|  |  |  |     beforeEach(() => { | 
					
						
							| 
									
										
										
										
											2017-10-02 15:59:57 -07:00
										 |  |  |       idle = new IdleScheduler(null !, 3000, { | 
					
						
							|  |  |  |         log: (v, ctx = '') => console.error(v, ctx), | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2017-09-28 16:18:12 -07:00
										 |  |  |       group = new PrefetchAssetGroup( | 
					
						
							|  |  |  |           scope, scope, idle, manifest.assetGroups ![0], tmpHashTable(manifest), db, 'test'); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2019-06-24 15:04:07 +03:00
										 |  |  |     it('initializes without crashing', async() => { await group.initializeFully(); }); | 
					
						
							|  |  |  |     it('fully caches the two files', async() => { | 
					
						
							| 
									
										
										
										
											2017-09-28 16:18:12 -07:00
										 |  |  |       await group.initializeFully(); | 
					
						
							|  |  |  |       scope.updateServerState(); | 
					
						
							|  |  |  |       const res1 = await group.handleFetch(scope.newRequest('/foo.txt'), scope); | 
					
						
							|  |  |  |       const res2 = await group.handleFetch(scope.newRequest('/bar.txt'), scope); | 
					
						
							|  |  |  |       expect(await res1 !.text()).toEqual('this is foo'); | 
					
						
							|  |  |  |       expect(await res2 !.text()).toEqual('this is bar'); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2019-06-24 15:04:07 +03:00
										 |  |  |     it('persists the cache across restarts', async() => { | 
					
						
							| 
									
										
										
										
											2017-09-28 16:18:12 -07:00
										 |  |  |       await group.initializeFully(); | 
					
						
							|  |  |  |       const freshScope = | 
					
						
							|  |  |  |           new SwTestHarnessBuilder().withCacheState(scope.caches.dehydrate()).build(); | 
					
						
							|  |  |  |       group = new PrefetchAssetGroup( | 
					
						
							|  |  |  |           freshScope, freshScope, idle, manifest.assetGroups ![0], tmpHashTable(manifest), | 
					
						
							|  |  |  |           new CacheDatabase(freshScope, freshScope), 'test'); | 
					
						
							|  |  |  |       await group.initializeFully(); | 
					
						
							|  |  |  |       const res1 = await group.handleFetch(scope.newRequest('/foo.txt'), scope); | 
					
						
							|  |  |  |       const res2 = await group.handleFetch(scope.newRequest('/bar.txt'), scope); | 
					
						
							|  |  |  |       expect(await res1 !.text()).toEqual('this is foo'); | 
					
						
							|  |  |  |       expect(await res2 !.text()).toEqual('this is bar'); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2019-06-24 15:04:07 +03:00
										 |  |  |     it('caches properly if resources are requested before initialization', async() => { | 
					
						
							| 
									
										
										
										
											2017-09-28 16:18:12 -07:00
										 |  |  |       const res1 = await group.handleFetch(scope.newRequest('/foo.txt'), scope); | 
					
						
							|  |  |  |       const res2 = await group.handleFetch(scope.newRequest('/bar.txt'), scope); | 
					
						
							|  |  |  |       expect(await res1 !.text()).toEqual('this is foo'); | 
					
						
							|  |  |  |       expect(await res2 !.text()).toEqual('this is bar'); | 
					
						
							|  |  |  |       scope.updateServerState(); | 
					
						
							|  |  |  |       await group.initializeFully(); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2019-06-24 15:04:07 +03:00
										 |  |  |     it('throws if the server-side content does not match the manifest hash', async() => { | 
					
						
							| 
									
										
										
										
											2017-09-28 16:18:12 -07:00
										 |  |  |       const badHashFs = dist.extend().addFile('/foo.txt', 'corrupted file').build(); | 
					
						
							|  |  |  |       const badServer = | 
					
						
							|  |  |  |           new MockServerStateBuilder().withManifest(manifest).withStaticFiles(badHashFs).build(); | 
					
						
							|  |  |  |       const badScope = new SwTestHarnessBuilder().withServerState(badServer).build(); | 
					
						
							|  |  |  |       group = new PrefetchAssetGroup( | 
					
						
							|  |  |  |           badScope, badScope, idle, manifest.assetGroups ![0], tmpHashTable(manifest), | 
					
						
							|  |  |  |           new CacheDatabase(badScope, badScope), 'test'); | 
					
						
							|  |  |  |       const err = await errorFrom(group.initializeFully()); | 
					
						
							|  |  |  |       expect(err.message).toContain('Hash mismatch'); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2017-12-16 14:42:55 -08:00
										 |  |  | })(); | 
					
						
							| 
									
										
										
										
											2017-09-28 16:18:12 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | function errorFrom(promise: Promise<any>): Promise<any> { | 
					
						
							|  |  |  |   return promise.catch(err => err); | 
					
						
							|  |  |  | } |