aboutsummaryrefslogtreecommitdiff
path: root/contexts/data/lib/closure-library/closure/goog/history/html5history_test.html
blob: 7026736237a469c2c698652e57aff087fff6ae19 (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE html>
<html>
<!--
Copyright 2010 The Closure Library Authors. All Rights Reserved.

Use of this source code is governed by the Apache License, Version 2.0.
See the COPYING file for details.
-->
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Closure Unit Tests - goog.history.Html5History</title>
<script src="../base.js"></script>
<script>
  goog.require('goog.history.Html5History');
  goog.require('goog.testing.MockControl');
  goog.require('goog.testing.jsunit');
  goog.require('goog.testing.mockmatchers');
</script>
</head>
<body>
<script>

  var mockControl;
  var mockWindow;

  var html5History;

  function setUp() {
    mockControl = new goog.testing.MockControl();

    mockWindow = {
      location: {}
    };
    mockWindow.attachEvent = mockControl.createFunctionMock();
    mockWindow.attachEvent(
        goog.testing.mockmatchers.ignoreArgument,
        goog.testing.mockmatchers.ignoreArgument).$anyTimes();
    var mockHistoryIsSupportedMethod = mockControl.createMethodMock(
        goog.history.Html5History, 'isSupported');
    mockHistoryIsSupportedMethod(mockWindow).$returns(true).$anyTimes();
  }

  function tearDown() {
    if (html5History) {
      html5History.dispose();
      html5History = null;
    }
    mockControl.$tearDown();
  }

  function testGetTokenWithoutUsingFragment() {
    mockWindow.location.pathname = '/test/something';

    mockControl.$replayAll();
    html5History = new goog.history.Html5History(mockWindow);
    html5History.setUseFragment(false);

    assertEquals('test/something', html5History.getToken());
    mockControl.$verifyAll();
  }

  function testGetTokenWithoutUsingFragmentWithCustomPathPrefix() {
    mockWindow.location.pathname = '/test/something';

    mockControl.$replayAll();
    html5History = new goog.history.Html5History(mockWindow);
    html5History.setUseFragment(false);
    html5History.setPathPrefix('/test/');

    assertEquals('something', html5History.getToken());
    mockControl.$verifyAll();
  }

  function testGetTokenWithoutUsingFragmentWithCustomTransformer() {
    mockWindow.location.pathname = '/test/something';
    var mockTransformer = mockControl.createLooseMock(
        goog.history.Html5History.TokenTransformer);
    mockTransformer.retrieveToken('/', mockWindow.location).$returns('abc/1');

    mockControl.$replayAll();
    html5History = new goog.history.Html5History(mockWindow, mockTransformer);
    html5History.setUseFragment(false);

    assertEquals('abc/1', html5History.getToken());
    mockControl.$verifyAll();
  }

  function testGetTokenWithoutUsingFragmentWithCustomTransformerAndPrefix() {
    mockWindow.location.pathname = '/test/something';
    var mockTransformer = mockControl.createLooseMock(
        goog.history.Html5History.TokenTransformer);
    mockTransformer.retrieveToken('/test/', mockWindow.location).
        $returns('abc/1');

    mockControl.$replayAll();
    html5History = new goog.history.Html5History(mockWindow, mockTransformer);
    html5History.setUseFragment(false);
    html5History.setPathPrefix('/test/');

    assertEquals('abc/1', html5History.getToken());
    mockControl.$verifyAll();
  }

  function testGetUrlWithoutUsingFragment() {
    mockWindow.location.search = '?q=something';

    mockControl.$replayAll();
    html5History = new goog.history.Html5History(mockWindow);
    html5History.setUseFragment(false);

    assertEquals('/some/token?q=something', html5History.getUrl_('some/token'));
    mockControl.$verifyAll();
  }

  function testGetUrlWithoutUsingFragmentWithCustomPathPrefix() {
    mockWindow.location.search = '?q=something';

    mockControl.$replayAll();
    html5History = new goog.history.Html5History(mockWindow);
    html5History.setUseFragment(false);
    html5History.setPathPrefix('/test/');

    assertEquals('/test/some/token?q=something',
                 html5History.getUrl_('some/token'));
    mockControl.$verifyAll();
  }

  function testGetUrlWithoutUsingFragmentWithCustomTransformer() {
    mockWindow.location.search = '?q=something';
    var mockTransformer = mockControl.createLooseMock(
        goog.history.Html5History.TokenTransformer);
    mockTransformer.createUrl('some/token', '/', mockWindow.location).
        $returns('/something/else/?different');

    mockControl.$replayAll();
    html5History = new goog.history.Html5History(mockWindow, mockTransformer);
    html5History.setUseFragment(false);

    assertEquals('/something/else/?different',
                 html5History.getUrl_('some/token'));
    mockControl.$verifyAll();
  }

  function testGetUrlWithoutUsingFragmentWithCustomTransformerAndPrefix() {
    mockWindow.location.search = '?q=something';
    var mockTransformer = mockControl.createLooseMock(
        goog.history.Html5History.TokenTransformer);
    mockTransformer.createUrl('some/token', '/test/', mockWindow.location).
        $returns('/something/else/?different');

    mockControl.$replayAll();
    html5History = new goog.history.Html5History(mockWindow, mockTransformer);
    html5History.setUseFragment(false);
    html5History.setPathPrefix('/test/');

    assertEquals('/something/else/?different',
                 html5History.getUrl_('some/token'));
    mockControl.$verifyAll();
  }

</script>
</body>
</html>