refactor(tests): refactor some tests to use the test injector

This commit is contained in:
Victor Berchet 2015-03-13 15:30:10 +01:00
parent 33b5ba863e
commit 30253592ff
2 changed files with 41 additions and 46 deletions

View File

@ -1,6 +1,7 @@
import { import {
AsyncTestCompleter, AsyncTestCompleter,
beforeEach, beforeEach,
beforeEachBindings,
ddescribe, ddescribe,
describe, describe,
el, el,
@ -17,29 +18,26 @@ import {Promise, PromiseWrapper} from 'angular2/src/facade/async';
import {Map, MapWrapper} from 'angular2/src/facade/collection'; import {Map, MapWrapper} from 'angular2/src/facade/collection';
import {XHR} from 'angular2/src/core/compiler/xhr/xhr'; import {XHR} from 'angular2/src/core/compiler/xhr/xhr';
import {UrlResolver} from 'angular2/src/core/compiler/url_resolver';
import {StyleUrlResolver} from 'angular2/src/core/compiler/style_url_resolver'; import {bind} from 'angular2/di';
export function main() { export function main() {
describe('StyleInliner', () => { describe('StyleInliner', () => {
var xhr, inliner; beforeEachBindings(() => [
bind(XHR).toClass(FakeXHR),
beforeEach(() => { ]);
xhr = new FakeXHR();
var urlResolver = new UrlResolver();
var styleUrlResolver = new StyleUrlResolver(urlResolver);
inliner = new StyleInliner(xhr, styleUrlResolver, urlResolver);
});
describe('loading', () => { describe('loading', () => {
it('should return a string when there is no import statement', () => {
it('should return a string when there is no import statement', inject([StyleInliner], (inliner) => {
var css = '.main {}'; var css = '.main {}';
var loadedCss = inliner.inlineImports(css, 'http://base'); var loadedCss = inliner.inlineImports(css, 'http://base');
expect(loadedCss).not.toBePromise(); expect(loadedCss).not.toBePromise();
expect(loadedCss).toEqual(css); expect(loadedCss).toEqual(css);
}); }));
it('should inline @import rules', inject([AsyncTestCompleter], (async) => { it('should inline @import rules',
inject([XHR, StyleInliner, AsyncTestCompleter], (xhr, inliner, async) => {
xhr.reply('http://base/one.css', '.one {}'); xhr.reply('http://base/one.css', '.one {}');
var css = '@import url("one.css");.main {}'; var css = '@import url("one.css");.main {}';
var loadedCss = inliner.inlineImports(css, 'http://base'); var loadedCss = inliner.inlineImports(css, 'http://base');
@ -56,7 +54,8 @@ export function main() {
); );
})); }));
it('should support url([unquoted url]) in @import rules', inject([AsyncTestCompleter], (async) => { it('should support url([unquoted url]) in @import rules',
inject([XHR, StyleInliner, AsyncTestCompleter], (xhr, inliner, async) => {
xhr.reply('http://base/one.css', '.one {}'); xhr.reply('http://base/one.css', '.one {}');
var css = '@import url(one.css);.main {}'; var css = '@import url(one.css);.main {}';
var loadedCss = inliner.inlineImports(css, 'http://base'); var loadedCss = inliner.inlineImports(css, 'http://base');
@ -73,7 +72,8 @@ export function main() {
); );
})); }));
it('should handle @import error gracefuly', inject([AsyncTestCompleter], (async) => { it('should handle @import error gracefuly',
inject([StyleInliner, AsyncTestCompleter], (inliner, async) => {
var css = '@import "one.css";.main {}'; var css = '@import "one.css";.main {}';
var loadedCss = inliner.inlineImports(css, 'http://base'); var loadedCss = inliner.inlineImports(css, 'http://base');
expect(loadedCss).toBePromise(); expect(loadedCss).toBePromise();
@ -89,7 +89,8 @@ export function main() {
); );
})); }));
it('should inline multiple @import rules', inject([AsyncTestCompleter], (async) => { it('should inline multiple @import rules',
inject([XHR, StyleInliner, AsyncTestCompleter], (xhr, inliner, async) => {
xhr.reply('http://base/one.css', '.one {}'); xhr.reply('http://base/one.css', '.one {}');
xhr.reply('http://base/two.css', '.two {}'); xhr.reply('http://base/two.css', '.two {}');
var css = '@import "one.css";@import "two.css";.main {}'; var css = '@import "one.css";@import "two.css";.main {}';
@ -107,7 +108,8 @@ export function main() {
); );
})); }));
it('should inline nested @import rules', inject([AsyncTestCompleter], (async) => { it('should inline nested @import rules',
inject([XHR, StyleInliner, AsyncTestCompleter], (xhr, inliner, async) => {
xhr.reply('http://base/one.css', '@import "two.css";.one {}'); xhr.reply('http://base/one.css', '@import "two.css";.one {}');
xhr.reply('http://base/two.css', '.two {}'); xhr.reply('http://base/two.css', '.two {}');
var css = '@import "one.css";.main {}'; var css = '@import "one.css";.main {}';
@ -125,7 +127,8 @@ export function main() {
); );
})); }));
it('should handle circular dependencies gracefuly', inject([AsyncTestCompleter], (async) => { it('should handle circular dependencies gracefuly',
inject([XHR, StyleInliner, AsyncTestCompleter], (xhr, inliner, async) => {
xhr.reply('http://base/one.css', '@import "two.css";.one {}'); xhr.reply('http://base/one.css', '@import "two.css";.one {}');
xhr.reply('http://base/two.css', '@import "one.css";.two {}'); xhr.reply('http://base/two.css', '@import "one.css";.two {}');
var css = '@import "one.css";.main {}'; var css = '@import "one.css";.main {}';
@ -143,7 +146,8 @@ export function main() {
); );
})); }));
it('should handle invalid @import fracefuly', inject([AsyncTestCompleter], (async) => { it('should handle invalid @import fracefuly',
inject([StyleInliner, AsyncTestCompleter], (inliner, async) => {
// Invalid rule: the url is not quoted // Invalid rule: the url is not quoted
var css = '@import one.css;.main {}'; var css = '@import one.css;.main {}';
var loadedCss = inliner.inlineImports(css, 'http://base/'); var loadedCss = inliner.inlineImports(css, 'http://base/');
@ -162,7 +166,8 @@ export function main() {
}); });
describe('media query', () => { describe('media query', () => {
it('should wrap inlined content in media query', inject([AsyncTestCompleter], (async) => { it('should wrap inlined content in media query',
inject([XHR, StyleInliner, AsyncTestCompleter], (xhr, inliner, async) => {
xhr.reply('http://base/one.css', '.one {}'); xhr.reply('http://base/one.css', '.one {}');
var css = '@import "one.css" (min-width: 700px) and (orientation: landscape);'; var css = '@import "one.css" (min-width: 700px) and (orientation: landscape);';
var loadedCss = inliner.inlineImports(css, 'http://base/'); var loadedCss = inliner.inlineImports(css, 'http://base/');
@ -181,7 +186,8 @@ export function main() {
}); });
describe('url rewritting', () => { describe('url rewritting', () => {
it('should rewrite url in inlined content', inject([AsyncTestCompleter], (async) => { it('should rewrite url in inlined content',
inject([XHR, StyleInliner, AsyncTestCompleter], (xhr, inliner, async) => {
// it should rewrite both '@import' and 'url()' // it should rewrite both '@import' and 'url()'
xhr.reply('http://base/one.css', '@import "./nested/two.css";.one {background-image: url("one.jpg");}'); xhr.reply('http://base/one.css', '@import "./nested/two.css";.one {background-image: url("one.jpg");}');
xhr.reply('http://base/nested/two.css', '.two {background-image: url("../img/two.jpg");}'); xhr.reply('http://base/nested/two.css', '.two {background-image: url("../img/two.jpg");}');

View File

@ -1,6 +1,7 @@
import { import {
AsyncTestCompleter, AsyncTestCompleter,
beforeEach, beforeEach,
beforeEachBindings,
ddescribe, ddescribe,
describe, describe,
el, el,
@ -15,16 +16,9 @@ import {DOM} from 'angular2/src/dom/dom_adapter';
import {ListWrapper} from 'angular2/src/facade/collection'; import {ListWrapper} from 'angular2/src/facade/collection';
import {Injector} from 'angular2/di'; import {Injector} from 'angular2/di';
import {Lexer, Parser, ChangeDetector, dynamicChangeDetection} from 'angular2/change_detection';
import {Compiler, CompilerCache} from 'angular2/src/core/compiler/compiler'; import {Compiler} from 'angular2/src/core/compiler/compiler';
import {DirectiveMetadataReader} from 'angular2/src/core/compiler/directive_metadata_reader'; import {TemplateResolver} from 'angular2/src/core/compiler/template_resolver';
import {NativeShadowDomStrategy} from 'angular2/src/core/compiler/shadow_dom_strategy';
import {TemplateLoader} from 'angular2/src/core/compiler/template_loader';
import {ComponentUrlMapper} from 'angular2/src/core/compiler/component_url_mapper';
import {UrlResolver} from 'angular2/src/core/compiler/url_resolver';
import {StyleUrlResolver} from 'angular2/src/core/compiler/style_url_resolver';
import {CssProcessor} from 'angular2/src/core/compiler/css_processor';
import {Template} from 'angular2/src/core/annotations/template'; import {Template} from 'angular2/src/core/annotations/template';
import {Decorator, Component, Viewport} from 'angular2/src/core/annotations/annotations'; import {Decorator, Component, Viewport} from 'angular2/src/core/annotations/annotations';
@ -33,25 +27,20 @@ import {MockTemplateResolver} from 'angular2/src/mock/template_resolver_mock';
import {Foreach} from 'angular2/src/directives/foreach'; import {Foreach} from 'angular2/src/directives/foreach';
import {bind} from 'angular2/di';
export function main() { export function main() {
describe('foreach', () => { describe('foreach', () => {
var view, cd, compiler, component, tplResolver; var view, cd, compiler, component, tplResolver;
beforeEach(() => {
var urlResolver = new UrlResolver(); beforeEachBindings(() => [
tplResolver = new MockTemplateResolver(); bind(TemplateResolver).toClass(MockTemplateResolver),
compiler = new Compiler( ]);
dynamicChangeDetection,
new TemplateLoader(null, null), beforeEach(inject([Compiler, TemplateResolver], (c, t) => {
new DirectiveMetadataReader(), compiler = c;
new Parser(new Lexer()), tplResolver = t;
new CompilerCache(), }));
new NativeShadowDomStrategy(new StyleUrlResolver(urlResolver)),
tplResolver,
new ComponentUrlMapper(),
urlResolver,
new CssProcessor(null)
);
});
function createView(pv) { function createView(pv) {
component = new TestComponent(); component = new TestComponent();