| 
									
										
										
										
											2017-03-19 11:14:17 +00:00
										 |  |  | const testPackage = require('../../helpers/test-package'); | 
					
						
							|  |  |  | const processorFactory = require('./fixInternalDocumentLinks'); | 
					
						
							|  |  |  | const Dgeni = require('dgeni'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | describe('fixInternalDocumentLinks processor', () => { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   it('should be available on the injector', () => { | 
					
						
							| 
									
										
										
										
											2017-04-21 13:10:52 +01:00
										 |  |  |     const dgeni = new Dgeni([testPackage('angular-base-package')]); | 
					
						
							| 
									
										
										
										
											2017-03-19 11:14:17 +00:00
										 |  |  |     const injector = dgeni.configureInjector(); | 
					
						
							|  |  |  |     const processor = injector.get('fixInternalDocumentLinks'); | 
					
						
							|  |  |  |     expect(processor.$process).toBeDefined(); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   it('should run before the correct processor', () => { | 
					
						
							|  |  |  |     const processor = processorFactory(); | 
					
						
							| 
									
										
										
										
											2017-04-19 16:03:15 +01:00
										 |  |  |     expect(processor.$runBefore).toEqual(['convertToJsonProcessor']); | 
					
						
							| 
									
										
										
										
											2017-03-19 11:14:17 +00:00
										 |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-21 10:57:58 +00:00
										 |  |  |   it('should run after the correct processor', () => { | 
					
						
							| 
									
										
										
										
											2017-03-19 11:14:17 +00:00
										 |  |  |     const processor = processorFactory(); | 
					
						
							|  |  |  |     expect(processor.$runAfter).toEqual(['inlineTagProcessor']); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   it('should prefix internal hash links with the current doc path', () => { | 
					
						
							|  |  |  |     const processor = processorFactory(); | 
					
						
							|  |  |  |     const docs = [ | 
					
						
							|  |  |  |       { | 
					
						
							|  |  |  |         path: 'some/doc', | 
					
						
							|  |  |  |         renderedContent: `
 | 
					
						
							|  |  |  |           <a href="http://google.com#q=angular">Google</a> | 
					
						
							|  |  |  |           <a href="some/relative/path#some-id">Some Id</a> | 
					
						
							|  |  |  |           <a href="#some-internal-id">Link to heading</a> | 
					
						
							|  |  |  |           <a class="important" href="#some-internal-id">Link to heading</a> | 
					
						
							|  |  |  |           <a href="#some-internal-id" target="_blank">Link to heading</a> | 
					
						
							|  |  |  |         `
 | 
					
						
							|  |  |  |       }, | 
					
						
							|  |  |  |     ]; | 
					
						
							|  |  |  |     processor.$process(docs); | 
					
						
							|  |  |  |     expect(docs).toEqual([ | 
					
						
							|  |  |  |       { | 
					
						
							|  |  |  |         path: 'some/doc', | 
					
						
							|  |  |  |         renderedContent: `
 | 
					
						
							|  |  |  |           <a href="http://google.com#q=angular">Google</a> | 
					
						
							|  |  |  |           <a href="some/relative/path#some-id">Some Id</a> | 
					
						
							|  |  |  |           <a href="some/doc#some-internal-id">Link to heading</a> | 
					
						
							|  |  |  |           <a class="important" href="some/doc#some-internal-id">Link to heading</a> | 
					
						
							|  |  |  |           <a href="some/doc#some-internal-id" target="_blank">Link to heading</a> | 
					
						
							|  |  |  |         `
 | 
					
						
							|  |  |  |       }, | 
					
						
							|  |  |  |     ]); | 
					
						
							| 
									
										
										
										
											2017-04-01 21:34:10 +03:00
										 |  |  |   }); | 
					
						
							|  |  |  | }); |