|
| 1 | +import {ddescribe, describe, it, iit, xit, expect, beforeEach, afterEach, |
| 2 | + AsyncTestCompleter, inject, proxy, SpyObject, IS_DARTIUM} from 'angular2/test_lib'; |
| 3 | +import {Json, RegExp, NumberWrapper, StringWrapper} from 'angular2/src/facade/lang'; |
| 4 | + |
| 5 | +import {JsonPipe} from 'angular2/src/change_detection/pipes/json_pipe'; |
| 6 | + |
| 7 | +export function main() { |
| 8 | + describe("JsonPipe", () => { |
| 9 | + var regNewLine = new RegExp('\n'); |
| 10 | + var canHasUndefined; // because Dart doesn't like undefined; |
| 11 | + var inceptionObj; |
| 12 | + var inceptionObjString; |
| 13 | + var catString; |
| 14 | + var pipe; |
| 15 | + |
| 16 | + function normalize(obj: string): string { |
| 17 | + return StringWrapper.replace(obj, regNewLine, ''); |
| 18 | + } |
| 19 | + |
| 20 | + beforeEach(() => { |
| 21 | + inceptionObj = { |
| 22 | + dream: { |
| 23 | + dream: { |
| 24 | + dream: 'Limbo' |
| 25 | + } |
| 26 | + } |
| 27 | + }; |
| 28 | + inceptionObjString = "{\n" + |
| 29 | + " \"dream\": {\n" + |
| 30 | + " \"dream\": {\n" + |
| 31 | + " \"dream\": \"Limbo\"\n" + |
| 32 | + " }\n" + |
| 33 | + " }\n" + |
| 34 | + "}"; |
| 35 | + |
| 36 | + |
| 37 | + catString = 'Inception Cat'; |
| 38 | + pipe = new JsonPipe(); |
| 39 | + }); |
| 40 | + |
| 41 | + describe("supports", () => { |
| 42 | + it("should support objects", () => { |
| 43 | + expect(pipe.supports(inceptionObj)).toBe(true); |
| 44 | + }); |
| 45 | + |
| 46 | + it("should support strings", () => { |
| 47 | + expect(pipe.supports(catString)).toBe(true); |
| 48 | + }); |
| 49 | + |
| 50 | + it("should support null", () => { |
| 51 | + expect(pipe.supports(null)).toBe(true); |
| 52 | + }); |
| 53 | + |
| 54 | + it("should support NaN", () => { |
| 55 | + expect(pipe.supports(NumberWrapper.NaN)).toBe(true); |
| 56 | + }); |
| 57 | + |
| 58 | + if (!IS_DARTIUM) { |
| 59 | + it("should support undefined", () => { |
| 60 | + expect(pipe.supports(canHasUndefined)).toBe(true); |
| 61 | + }); |
| 62 | + } |
| 63 | + |
| 64 | + }); |
| 65 | + |
| 66 | + describe("transform", () => { |
| 67 | + it("should return JSON-formatted string", () => { |
| 68 | + expect(pipe.transform(inceptionObj)).toEqual(inceptionObjString); |
| 69 | + }); |
| 70 | + |
| 71 | + it("should return JSON-formatted string even when normalized", () => { |
| 72 | + var dream1 = normalize(pipe.transform(inceptionObj)); |
| 73 | + var dream2 = normalize(inceptionObjString); |
| 74 | + expect(dream1).toEqual(dream2); |
| 75 | + }); |
| 76 | + |
| 77 | + it("should return JSON-formatted string similar to Json.stringify", () => { |
| 78 | + var dream1 = normalize(pipe.transform(inceptionObj)); |
| 79 | + var dream2 = normalize(Json.stringify(inceptionObj)); |
| 80 | + expect(dream1).toEqual(dream2); |
| 81 | + }); |
| 82 | + |
| 83 | + it("should return same value when nothing has changed since the last call", () => { |
| 84 | + expect(pipe.transform(inceptionObj)).toEqual(inceptionObjString); |
| 85 | + expect(pipe.transform(inceptionObj)).toEqual(inceptionObjString); |
| 86 | + }); |
| 87 | + |
| 88 | + }); |
| 89 | + |
| 90 | + describe("onDestroy", () => { |
| 91 | + it("should do nothing when no latest value", () => { |
| 92 | + expect(() => pipe.onDestroy()).not.toThrow(); |
| 93 | + }); |
| 94 | + }); |
| 95 | + |
| 96 | + }); |
| 97 | +} |
0 commit comments