aboutsummaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/src/app/shared/pipes/order/orderBy.pipe.spec.ts
blob: e6a1d310c1425bdd4dbefe26e9943283fe26e90b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import {OrderByPipe} from "./orderBy.pipe";
import {TestBed} from "@angular/core/testing";


describe('Sort Pipe', () => {
  let pipe: OrderByPipe;

  beforeAll(done => (async () => {
    TestBed.configureTestingModule({

    });
    await TestBed.compileComponents();
    pipe = new OrderByPipe();

  })().then(done).catch(done.fail));


  test('Sort should order the array with nested objects', () => {
    let list = [
      {
        id: 1,
        name: 'b'
      },
      {
        id: 3,
        name: 'a'
      },
      {
        id: 2,
        name: 'd'
      }
    ];

    let result = pipe.transform(list, {property : 'name'});
    expect(result.length).toEqual(3);
    expect(result).toEqual(<any>[
      {
        'id': 3,
        'name': 'a'
      },
      {
        'id': 1,
        'name': 'b'
      },
      {
        'id': 2,
        'name': 'd'
      }])

  });

  test('Sort should order the array', () => {
    let list = ['b', 'd', 'a'];

    let result = pipe.transform(list);
    expect(result.length).toEqual(3);
    expect(result).toEqual(<any>['a', 'b', 'd']);

  });
});