This change moves many APIs to the angular2/core export.
This change also automatically adds FORM_BINDINGS in
the application root injector.
BREAKING CHANGE:
    Many dependencies that were previously exported from specific
    APIs are now exported from angular2/core. Affected exports, which
    should now be included from angular2/core include:
    angular2/forms
    angular2/di
    angular2/directives
    angular2/change_detection
    angular2/bootstrap (except for dart users)
    angular2/render
    angular2/metadata
    angular2/debug
    angular2/pipes
Closes #3977
		
	
			
		
			
				
	
	
		
			182 lines
		
	
	
		
			7.7 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			182 lines
		
	
	
		
			7.7 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import {
 | 
						|
  AsyncTestCompleter,
 | 
						|
  beforeEach,
 | 
						|
  ddescribe,
 | 
						|
  describe,
 | 
						|
  el,
 | 
						|
  expect,
 | 
						|
  iit,
 | 
						|
  inject,
 | 
						|
  it,
 | 
						|
  xit,
 | 
						|
  TestComponentBuilder
 | 
						|
} from 'angular2/test_lib';
 | 
						|
 | 
						|
import {HtmlParser} from 'angular2/src/compiler/html_parser';
 | 
						|
import {TypeMetadata, ViewEncapsulation, TemplateMetadata} from 'angular2/src/compiler/api';
 | 
						|
 | 
						|
import {TemplateLoader} from 'angular2/src/compiler/template_loader';
 | 
						|
import {UrlResolver} from 'angular2/src/core/services/url_resolver';
 | 
						|
import {humanizeDom} from './html_parser_spec';
 | 
						|
import {HtmlTextAst, HtmlElementAst, HtmlAttrAst} from 'angular2/src/compiler/html_ast';
 | 
						|
import {XHR} from 'angular2/src/core/render/xhr';
 | 
						|
import {MockXHR} from 'angular2/src/core/render/xhr_mock';
 | 
						|
 | 
						|
export function main() {
 | 
						|
  describe('TemplateLoader', () => {
 | 
						|
    var loader: TemplateLoader;
 | 
						|
    var dirType: TypeMetadata;
 | 
						|
    var xhr: MockXHR;
 | 
						|
    beforeEach(inject([XHR], (mockXhr) => {
 | 
						|
      xhr = mockXhr;
 | 
						|
      var urlResolver = new UrlResolver();
 | 
						|
      loader = new TemplateLoader(xhr, urlResolver, new HtmlParser());
 | 
						|
      dirType = new TypeMetadata({typeUrl: 'http://sometypeurl', typeName: 'SomeComp'});
 | 
						|
    }));
 | 
						|
 | 
						|
    describe('loadTemplate', () => {
 | 
						|
      describe('inline template', () => {
 | 
						|
        it('should parse the template', inject([AsyncTestCompleter], (async) => {
 | 
						|
             loader.loadTemplate(dirType, null, 'a', null, [], ['test.css'])
 | 
						|
                 .then((template: TemplateMetadata) => {
 | 
						|
                   expect(humanizeDom(template.nodes))
 | 
						|
                       .toEqual([[HtmlTextAst, 'a', 'SomeComp > #text(a):nth-child(0)']])
 | 
						|
                           async.done();
 | 
						|
                 });
 | 
						|
           }));
 | 
						|
 | 
						|
        it('should resolve styles against the typeUrl', inject([AsyncTestCompleter], (async) => {
 | 
						|
             loader.loadTemplate(dirType, null, 'a', null, [], ['test.css'])
 | 
						|
                 .then((template: TemplateMetadata) => {
 | 
						|
                   expect(template.styleAbsUrls).toEqual(['http://sometypeurl/test.css']);
 | 
						|
                   async.done();
 | 
						|
                 });
 | 
						|
           }));
 | 
						|
      });
 | 
						|
 | 
						|
      describe('templateUrl', () => {
 | 
						|
 | 
						|
        it('should load a template from a url that is resolved against typeUrl',
 | 
						|
           inject([AsyncTestCompleter], (async) => {
 | 
						|
             xhr.expect('http://sometypeurl/sometplurl', 'a');
 | 
						|
             loader.loadTemplate(dirType, null, null, 'sometplurl', [], ['test.css'])
 | 
						|
                 .then((template: TemplateMetadata) => {
 | 
						|
                   expect(humanizeDom(template.nodes))
 | 
						|
                       .toEqual([[HtmlTextAst, 'a', 'SomeComp > #text(a):nth-child(0)']])
 | 
						|
                           async.done();
 | 
						|
                 });
 | 
						|
             xhr.flush();
 | 
						|
           }));
 | 
						|
 | 
						|
        it('should resolve styles against the templateUrl',
 | 
						|
           inject([AsyncTestCompleter], (async) => {
 | 
						|
             xhr.expect('http://sometypeurl/tpl/sometplurl', 'a');
 | 
						|
             loader.loadTemplate(dirType, null, null, 'tpl/sometplurl', [], ['test.css'])
 | 
						|
                 .then((template: TemplateMetadata) => {
 | 
						|
                   expect(template.styleAbsUrls).toEqual(['http://sometypeurl/tpl/test.css']);
 | 
						|
                   async.done();
 | 
						|
                 });
 | 
						|
             xhr.flush();
 | 
						|
           }));
 | 
						|
 | 
						|
      });
 | 
						|
 | 
						|
    });
 | 
						|
 | 
						|
    describe('loadTemplateFromString', () => {
 | 
						|
      it('should store the viewEncapsulationin the result', () => {
 | 
						|
        var viewEncapsulation = ViewEncapsulation.Native;
 | 
						|
        var template = loader.createTemplateFromString(dirType, viewEncapsulation, '',
 | 
						|
                                                       'http://someurl/', [], []);
 | 
						|
        expect(template.encapsulation).toBe(viewEncapsulation);
 | 
						|
      });
 | 
						|
 | 
						|
      it('should parse the template as html', () => {
 | 
						|
        var template =
 | 
						|
            loader.createTemplateFromString(dirType, null, 'a', 'http://someurl/', [], []);
 | 
						|
        expect(humanizeDom(template.nodes))
 | 
						|
            .toEqual([[HtmlTextAst, 'a', 'SomeComp > #text(a):nth-child(0)']])
 | 
						|
      });
 | 
						|
 | 
						|
      it('should collect and keep ngContent', () => {
 | 
						|
        var template = loader.createTemplateFromString(dirType, null, '<ng-content select="a">',
 | 
						|
                                                       'http://someurl/', [], []);
 | 
						|
        expect(template.ngContentSelectors).toEqual(['a']);
 | 
						|
        expect(humanizeDom(template.nodes))
 | 
						|
            .toEqual([
 | 
						|
              [HtmlElementAst, 'ng-content', 'SomeComp > ng-content:nth-child(0)'],
 | 
						|
              [HtmlAttrAst, 'select', 'a', 'SomeComp > ng-content:nth-child(0)[select=a]']
 | 
						|
            ])
 | 
						|
      });
 | 
						|
 | 
						|
      it('should collect and remove top level styles in the template', () => {
 | 
						|
        var template = loader.createTemplateFromString(dirType, null, '<style>a</style>',
 | 
						|
                                                       'http://someurl/', [], []);
 | 
						|
        expect(template.styles).toEqual(['a']);
 | 
						|
        expect(template.nodes).toEqual([]);
 | 
						|
      });
 | 
						|
 | 
						|
      it('should collect and remove styles inside in elements', () => {
 | 
						|
        var template = loader.createTemplateFromString(dirType, null, '<div><style>a</style></div>',
 | 
						|
                                                       'http://someurl/', [], []);
 | 
						|
        expect(template.styles).toEqual(['a']);
 | 
						|
        expect(humanizeDom(template.nodes))
 | 
						|
            .toEqual([[HtmlElementAst, 'div', 'SomeComp > div:nth-child(0)']]);
 | 
						|
      });
 | 
						|
 | 
						|
      it('should collect and remove styleUrls in the template', () => {
 | 
						|
        var template = loader.createTemplateFromString(
 | 
						|
            dirType, null, '<link rel="stylesheet" href="aUrl">', 'http://someurl/', [], []);
 | 
						|
        expect(template.styleAbsUrls).toEqual(['http://someurl/aUrl']);
 | 
						|
        expect(template.nodes).toEqual([]);
 | 
						|
      });
 | 
						|
 | 
						|
      it('should collect and remove styleUrls in elements', () => {
 | 
						|
        var template = loader.createTemplateFromString(
 | 
						|
            dirType, null, '<div><link rel="stylesheet" href="aUrl"></div>', 'http://someurl/', [],
 | 
						|
            []);
 | 
						|
        expect(template.styleAbsUrls).toEqual(['http://someurl/aUrl']);
 | 
						|
        expect(humanizeDom(template.nodes))
 | 
						|
            .toEqual([[HtmlElementAst, 'div', 'SomeComp > div:nth-child(0)']]);
 | 
						|
      });
 | 
						|
 | 
						|
      it('should keep link elements with non stylesheet rel attribute', () => {
 | 
						|
        var template = loader.createTemplateFromString(dirType, null, '<link rel="a" href="b">',
 | 
						|
                                                       'http://someurl/', [], []);
 | 
						|
        expect(template.styleAbsUrls).toEqual([]);
 | 
						|
        expect(humanizeDom(template.nodes))
 | 
						|
            .toEqual([
 | 
						|
              [HtmlElementAst, 'link', 'SomeComp > link:nth-child(0)'],
 | 
						|
              [HtmlAttrAst, 'href', 'b', 'SomeComp > link:nth-child(0)[href=b]'],
 | 
						|
              [HtmlAttrAst, 'rel', 'a', 'SomeComp > link:nth-child(0)[rel=a]']
 | 
						|
            ]);
 | 
						|
      });
 | 
						|
 | 
						|
      it('should extract @import style urls into styleAbsUrl', () => {
 | 
						|
        var template = loader.createTemplateFromString(dirType, null, '', 'http://someurl',
 | 
						|
                                                       ['@import "test.css";'], []);
 | 
						|
        expect(template.styles).toEqual(['']);
 | 
						|
        expect(template.styleAbsUrls).toEqual(['http://someurl/test.css']);
 | 
						|
      });
 | 
						|
 | 
						|
      it('should resolve relative urls in inline styles', () => {
 | 
						|
        var template =
 | 
						|
            loader.createTemplateFromString(dirType, null, '', 'http://someurl',
 | 
						|
                                            ['.foo{background-image: url(\'double.jpg\');'], []);
 | 
						|
        expect(template.styles)
 | 
						|
            .toEqual(['.foo{background-image: url(\'http://someurl/double.jpg\');']);
 | 
						|
      });
 | 
						|
 | 
						|
      it('should resolve relative style urls in styleUrls', () => {
 | 
						|
        var template =
 | 
						|
            loader.createTemplateFromString(dirType, null, '', 'http://someurl', [], ['test.css']);
 | 
						|
        expect(template.styles).toEqual([]);
 | 
						|
        expect(template.styleAbsUrls).toEqual(['http://someurl/test.css']);
 | 
						|
      });
 | 
						|
 | 
						|
    });
 | 
						|
 | 
						|
 | 
						|
  });
 | 
						|
}
 |