/** * @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 {NgForOfContext} from '@angular/common'; import {ΔdefineComponent} from '../../src/render3/definition'; import {RenderFlags, Δbind, Δelement, ΔelementAttribute, ΔelementEnd, ΔelementProperty, ΔelementStart, ΔelementStyleProp, ΔelementStyling, ΔelementStylingApply, ΔelementStylingMap, Δinterpolation1, Δproperty, Δselect, Δtemplate, Δtext, ΔtextBinding} from '../../src/render3/index'; import {AttributeMarker} from '../../src/render3/interfaces/node'; import {bypassSanitizationTrustHtml, bypassSanitizationTrustResourceUrl, bypassSanitizationTrustScript, bypassSanitizationTrustStyle, bypassSanitizationTrustUrl} from '../../src/sanitization/bypass'; import {ΔdefaultStyleSanitizer, ΔsanitizeHtml, ΔsanitizeResourceUrl, ΔsanitizeScript, ΔsanitizeStyle, ΔsanitizeUrl} from '../../src/sanitization/sanitization'; import {Sanitizer, SecurityContext} from '../../src/sanitization/security'; import {StyleSanitizeFn} from '../../src/sanitization/style_sanitizer'; import {NgForOf} from './common_with_def'; import {ComponentFixture, TemplateFixture} from './render_util'; describe('instructions', () => { function createAnchor() { ΔelementStart(0, 'a'); ΔelementStyling(); ΔelementEnd(); } function createDiv( initialClasses?: string[] | null, classBindingNames?: string[] | null, initialStyles?: string[] | null, styleBindingNames?: string[] | null, styleSanitizer?: StyleSanitizeFn) { const attrs: any[] = []; if (initialClasses) { attrs.push(AttributeMarker.Classes, ...initialClasses); } if (initialStyles) { attrs.push(AttributeMarker.Styles, ...initialStyles); } ΔelementStart(0, 'div', attrs); ΔelementStyling(classBindingNames || null, styleBindingNames || null, styleSanitizer); ΔelementEnd(); } function createScript() { Δelement(0, 'script'); } describe('bind', () => { it('should update bindings when value changes', () => { const t = new TemplateFixture(createAnchor, () => {}, 1, 1); t.update(() => ΔelementProperty(0, 'title', Δbind('Hello'))); expect(t.html).toEqual(''); t.update(() => ΔelementProperty(0, 'title', Δbind('World'))); expect(t.html).toEqual(''); expect(ngDevMode).toHaveProperties({ firstTemplatePass: 1, tNode: 2, // 1 for hostElement + 1 for the template under test tView: 2, // 1 for rootView + 1 for the template view rendererCreateElement: 1, rendererSetProperty: 2 }); }); it('should not update bindings when value does not change', () => { const idempotentUpdate = () => ΔelementProperty(0, 'title', Δbind('Hello')); const t = new TemplateFixture(createAnchor, idempotentUpdate, 1, 1); t.update(); expect(t.html).toEqual(''); t.update(); expect(t.html).toEqual(''); expect(ngDevMode).toHaveProperties({ firstTemplatePass: 1, tNode: 2, // 1 for hostElement + 1 for the template under test tView: 2, // 1 for rootView + 1 for the template view rendererCreateElement: 1, rendererSetProperty: 1 }); }); }); describe('element', () => { it('should create an element', () => { const t = new TemplateFixture(() => { Δelement(0, 'div', ['id', 'test', 'title', 'Hello']); }, () => {}, 1); const div = (t.hostElement as HTMLElement).querySelector('div') !; expect(div.id).toEqual('test'); expect(div.title).toEqual('Hello'); expect(ngDevMode).toHaveProperties({ firstTemplatePass: 1, tNode: 2, // 1 for div, 1 for host element tView: 2, // 1 for rootView + 1 for the template view rendererCreateElement: 1, }); }); it('should allow setting namespaced attributes', () => { const t = new TemplateFixture(() => { Δelement(0, 'div', [ // id="test" 'id', 'test', // test:foo="bar" AttributeMarker.NamespaceURI, 'http://someuri.com/2018/test', 'test:foo', 'bar', // title="Hello" 'title', 'Hello', ]); }, () => {}, 1); const div = (t.hostElement as HTMLElement).querySelector('div') !; const attrs: any = div.attributes; expect(attrs['id'].name).toEqual('id'); expect(attrs['id'].namespaceURI).toEqual(null); expect(attrs['id'].value).toEqual('test'); expect(attrs['test:foo'].name).toEqual('test:foo'); expect(attrs['test:foo'].namespaceURI).toEqual('http://someuri.com/2018/test'); expect(attrs['test:foo'].value).toEqual('bar'); expect(attrs['title'].name).toEqual('title'); expect(attrs['title'].namespaceURI).toEqual(null); expect(attrs['title'].value).toEqual('Hello'); expect(ngDevMode).toHaveProperties({ firstTemplatePass: 1, tNode: 2, // 1 for div, 1 for host element tView: 2, // 1 for rootView + 1 for the template view rendererCreateElement: 1, rendererSetAttribute: 3 }); }); }); describe('elementAttribute', () => { it('should use sanitizer function', () => { const t = new TemplateFixture(createDiv, () => {}, 1); t.update(() => ΔelementAttribute(0, 'title', 'javascript:true', ΔsanitizeUrl)); expect(t.html).toEqual('
'); t.update( () => ΔelementAttribute( 0, 'title', bypassSanitizationTrustUrl('javascript:true'), ΔsanitizeUrl)); expect(t.html).toEqual(''); expect(ngDevMode).toHaveProperties({ firstTemplatePass: 1, tNode: 2, // 1 for div, 1 for host element tView: 2, // 1 for rootView + 1 for the template view rendererCreateElement: 1, rendererSetAttribute: 2 }); }); }); describe('select', () => { it('should error in DevMode if index is out of range', () => { // Only one constant added, meaning only index `0` is valid. const t = new TemplateFixture(createDiv, () => {}, 1, 0); expect(() => { t.update(() => { Δselect(-1); }); }).toThrow(); expect(() => { t.update(() => { Δselect(1); }); }).toThrow(); expect(() => { t.update(() => { Δselect(0); }); }).not.toThrow(); }); }); describe('property', () => { // TODO(benlesh): Replace with TestBed tests once the instruction is being generated. it('should set properties of the selected element', () => { // const t = new TemplateFixture(createDiv, () => {}, 1, 1); t.update(() => { Δselect(0); Δproperty('title', 'one'); }); expect(t.html).toEqual(''); t.update(() => { Δselect(0); Δproperty('title', 'two'); }); expect(t.html).toEqual(''); expect(ngDevMode).toHaveProperties({ firstTemplatePass: 1, tNode: 2, // 1 for div, 1 for host element tView: 2, // 1 for rootView + 1 for the template view rendererCreateElement: 1, rendererSetProperty: 2, }); }); // TODO(benlesh): Replace with TestBed tests once the instruction is being generated. it('should chain', () => { // const t = new TemplateFixture(createDiv, () => {}, 1, 2); t.update(() => { Δselect(0); Δproperty('title', 'one')('accessKey', 'A'); }); expect(t.html).toEqual(''); t.update(() => { Δselect(0); Δproperty('title', 'two')('accessKey', 'B'); }); expect(t.html).toEqual(''); expect(ngDevMode).toHaveProperties({ firstTemplatePass: 1, tNode: 2, // 1 for div, 1 for host element tView: 2, // 1 for rootView + 1 for the template view rendererCreateElement: 1, rendererSetProperty: 4, }); }); // TODO(benlesh): Replace with TestBed tests once the instruction is being generated. it('should diff value changes', () => { // const t = new TemplateFixture(createDiv, () => {}, 1, 2); t.update(() => { Δselect(0); Δproperty('title', 'one')('accessKey', 'A'); }); expect(t.html).toEqual(''); t.update(() => { Δselect(0); Δproperty('title', 'two')('accessKey', 'A'); // Notice: only changing the title. }); expect(t.html).toEqual(''); expect(ngDevMode).toHaveProperties({ firstTemplatePass: 1, tNode: 2, // 1 for div, 1 for host element tView: 2, // 1 for rootView + 1 for the template view rendererCreateElement: 1, rendererSetProperty: 3, }); }); it('should error in dev mode if select was not called prior', () => { const t = new TemplateFixture(createDiv, () => {}, 1, 1); expect(() => { t.update(() => { Δproperty('title', 'test'); }); }).toThrow(); expect(() => { t.update(() => { Δselect(0); Δproperty('title', 'test'); }); }).not.toThrow(); }); }); describe('elementProperty', () => { it('should use sanitizer function when available', () => { const t = new TemplateFixture(createDiv, () => {}, 1); t.update(() => ΔelementProperty(0, 'title', 'javascript:true', ΔsanitizeUrl)); expect(t.html).toEqual(''); t.update( () => ΔelementProperty( 0, 'title', bypassSanitizationTrustUrl('javascript:false'), ΔsanitizeUrl)); expect(t.html).toEqual(''); expect(ngDevMode).toHaveProperties({ firstTemplatePass: 1, tNode: 2, // 1 for div, 1 for host element tView: 2, // 1 for rootView + 1 for the template view rendererCreateElement: 1, }); }); it('should not stringify non string values', () => { const t = new TemplateFixture(() => { Δelement(0, 'input'); }, () => {}, 1); // Note: don't use 'hidden' here because IE10 does not support the hidden property t.update(() => ΔelementProperty(0, 'required', false)); // The required property would be true if `false` was stringified into `"false"`. expect((t.hostElement as HTMLElement).querySelector('input') !.required).toEqual(false); expect(ngDevMode).toHaveProperties({ firstTemplatePass: 1, tNode: 2, // 1 for div, 1 for host element tView: 2, // 1 for rootView + 1 for the template view rendererCreateElement: 1, rendererSetProperty: 1 }); }); }); describe('elementStyleProp', () => { it('should automatically sanitize unless a bypass operation is applied', () => { const t = new TemplateFixture(() => { return createDiv(null, null, null, ['background-image'], ΔdefaultStyleSanitizer); }, () => {}, 1); t.update(() => { ΔelementStyleProp(0, 0, 'url("http://server")'); ΔelementStylingApply(0); }); // nothing is set because sanitizer suppresses it. expect(t.html).toEqual(''); t.update(() => { ΔelementStyleProp(0, 0, bypassSanitizationTrustStyle('url("http://server2")')); ΔelementStylingApply(0); }); expect((t.hostElement.firstChild as HTMLElement).style.getPropertyValue('background-image')) .toEqual('url("http://server2")'); }); it('should not re-apply the style value even if it is a newly bypassed again', () => { const sanitizerInterceptor = new MockSanitizerInterceptor(); const t = createTemplateFixtureWithSanitizer( () => createDiv( null, null, null, ['background-image'], sanitizerInterceptor.getStyleSanitizer()), 1, sanitizerInterceptor); t.update(() => { ΔelementStyleProp(0, 0, bypassSanitizationTrustStyle('apple')); ΔelementStylingApply(0); }); expect(sanitizerInterceptor.lastValue !).toEqual('apple'); sanitizerInterceptor.lastValue = null; t.update(() => { ΔelementStyleProp(0, 0, bypassSanitizationTrustStyle('apple')); ΔelementStylingApply(0); }); expect(sanitizerInterceptor.lastValue).toEqual(null); }); }); describe('elementStyleMap', () => { function createDivWithStyle() { ΔelementStart(0, 'div', [AttributeMarker.Styles, 'height', '10px']); ΔelementStyling([], ['height']); ΔelementEnd(); } it('should add style', () => { const fixture = new TemplateFixture(createDivWithStyle, () => {}, 1); fixture.update(() => { ΔelementStylingMap(0, null, {'background-color': 'red'}); ΔelementStylingApply(0); }); expect(fixture.html).toEqual(''); }); it('should sanitize new styles that may contain `url` properties', () => { const detectedValues: string[] = []; const sanitizerInterceptor = new MockSanitizerInterceptor(value => { detectedValues.push(value); }); const fixture = createTemplateFixtureWithSanitizer( () => createDiv(null, null, null, null, sanitizerInterceptor.getStyleSanitizer()), 1, sanitizerInterceptor); fixture.update(() => { ΔelementStylingMap(0, null, { 'background-image': 'background-image', 'background': 'background', 'border-image': 'border-image', 'list-style': 'list-style', 'list-style-image': 'list-style-image', 'filter': 'filter', 'width': 'width' }); ΔelementStylingApply(0); }); const props = detectedValues.sort(); expect(props).toEqual([ 'background', 'background-image', 'border-image', 'filter', 'list-style', 'list-style-image' ]); }); }); describe('elementClass', () => { function createDivWithStyling() { ΔelementStart(0, 'div'); ΔelementStyling(); ΔelementEnd(); } it('should add class', () => { const fixture = new TemplateFixture(createDivWithStyling, () => {}, 1); fixture.update(() => { ΔelementStylingMap(0, 'multiple classes'); ΔelementStylingApply(0); }); expect(fixture.html).toEqual(''); }); }); describe('performance counters', () => { it('should create tViews only once for each nested level', () => { const _c0 = [AttributeMarker.Template, 'ngFor', 'ngForOf']; const _c1 = [AttributeMarker.Template, 'ngFor', 'ngForOf']; function ToDoAppComponent_NgForOf_Template_0(rf: RenderFlags, ctx0: NgForOfContext