~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/javascript/tests/test_branchrevisionexpander.js

  • Committer: Colin Watson
  • Date: 2011-08-19 00:25:11 UTC
  • mfrom: (7675.1045.728 db-devel)
  • mto: This revision was merged to the branch mainline in revision 13909.
  • Revision ID: cjwatson@canonical.com-20110819002511-0x8hrqs1ckiqk53g
merge db-devel

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright 2010 Canonical Ltd.  This software is licensed under the
 
2
 * GNU Affero General Public License version 3 (see the file LICENSE).
 
3
 *
 
4
 * Tests for lp.code.branch.revisionexpander.
 
5
 *
 
6
 */
 
7
 
 
8
YUI({
 
9
    base: '../../../../canonical/launchpad/icing/yui/',
 
10
    filter: 'raw', combine: false
 
11
    }).use('test', 'console', 'node-event-simulate', 'lp.client',
 
12
           'lp.code.branch.revisionexpander', function(Y) {
 
13
 
 
14
    var module = Y.lp.code.branch.revisionexpander;
 
15
    var suite = new Y.Test.Suite("branch.revisionexpander Tests");
 
16
 
 
17
    var MockClient = function() {};
 
18
    MockClient.prototype = {
 
19
        'calls': [],
 
20
        'get': function(uri, config) {
 
21
            this.calls.push({'uri': uri});
 
22
            config.on.success(samplediff);
 
23
        }
 
24
    };
 
25
 
 
26
    var samplediff = (
 
27
        "=== modified file 'README'\n" +
 
28
        "--- README 2011-01-20 23:05:06 +0000\n" +
 
29
        "+++ README 2011-06-30 10:47:28 +0000\n" +
 
30
        "@@ -1,3 +1,4 @@\n" +
 
31
        "+Green sheep!\n" +
 
32
        " =========\n" +
 
33
        " testtools\n" +
 
34
        " =========\n" +
 
35
        "            \n");
 
36
 
 
37
    suite.add(new Y.Test.Case({
 
38
        name: 'Test difftext_to_node',
 
39
 
 
40
        /*
 
41
         * Unified diffs are rendered to a table, one row per line
 
42
         */
 
43
        test_difftext_to_node_outputs_table: function() {
 
44
            var node = module.difftext_to_node(samplediff);
 
45
            Y.Assert.areEqual('TABLE', node.get('tagName'));
 
46
            Y.Assert.isTrue(node.hasClass('diff'));
 
47
            /* samplediff has 9 lines, so the table will have 9 rows
 
48
             * (trailing newlines don't result in a final row containing an
 
49
             * empty string) */
 
50
            Y.Assert.areEqual(9, node.get('children').size());
 
51
        },
 
52
 
 
53
        /*
 
54
         * Diffs are not interpreted as HTML.
 
55
         */
 
56
        test_difftext_to_node_escaping: function() {
 
57
            var node = module.difftext_to_node("<p>hello</p>");
 
58
            var td = node.one('td');
 
59
            Y.Assert.isNull(td.one('p'));
 
60
        }
 
61
        }));
 
62
 
 
63
    suite.add(new Y.Test.Case({
 
64
        name: 'Tests for bmp_diff_loader and bmp_get_diff_url',
 
65
 
 
66
        setUp: function() {
 
67
            LP.cache.branch_diff_link = 'fake-link-base/';
 
68
            },
 
69
 
 
70
        tearDown: function() {
 
71
            delete LP.cache.branch_diff_link;
 
72
            },
 
73
 
 
74
        /*
 
75
         * bmp_diff_loader fetches from the URI specified by the div id and
 
76
         * renders a diff.
 
77
         */
 
78
        test_bmp_diff_loader_fetches_from_diff_uri: function() {
 
79
            var FakeExpander = function() {};
 
80
            FakeExpander.prototype = {
 
81
                'icon_node':
 
82
                    Y.Node.create('<div id="expandable-23-45"></div>'),
 
83
                'receive': function (node) {
 
84
                    this.received_node = node;
 
85
                }
 
86
            };
 
87
            var mock_client = new MockClient();
 
88
            var fake_expander = new FakeExpander();
 
89
            module.bmp_diff_loader(fake_expander, mock_client);
 
90
            Y.Assert.areEqual(
 
91
                'fake-link-base/45/22', mock_client.calls[0].uri);
 
92
            Y.Assert.areEqual(
 
93
                'TABLE', fake_expander.received_node.get('tagName'));
 
94
            },
 
95
 
 
96
        /*
 
97
         * bmp_get_diff_url(revno) gets the URL for a diff of just that revision
 
98
         */
 
99
        test_bmp_get_diff_url_one_arg: function() {
 
100
            Y.Assert.areEqual(
 
101
                'fake-link-base/1234',
 
102
                module.bmp_get_diff_url(1234));
 
103
            },
 
104
 
 
105
        /*
 
106
         * bmp_get_diff_url(start_revno, end_revno) gets the URL for a diff of
 
107
         * the given revision range.
 
108
         */
 
109
        test_bmp_get_diff_url_two_args: function() {
 
110
            Y.Assert.areEqual(
 
111
                'fake-link-base/33/22',
 
112
                module.bmp_get_diff_url(22, 33));
 
113
            },
 
114
 
 
115
        /*
 
116
         * bmp_get_diff_url(0, 1) just returns URL_BASE/1, rather than
 
117
         * URL_BASE/1/0 which Loggerhead will reject.
 
118
         */
 
119
        test_bmp_get_diff_url_of_0_to_1: function() {
 
120
            Y.Assert.areEqual(
 
121
                'fake-link-base/1',
 
122
                module.bmp_get_diff_url(0, 1));
 
123
            },
 
124
 
 
125
        /*
 
126
         * bmp_get_diff_url(0, 2) just returns URL_BASE/1, rather than
 
127
         * URL_BASE/1/0 which Loggerhead will reject.
 
128
         */
 
129
        test_bmp_get_diff_url_of_0_to_2: function() {
 
130
            Y.Assert.areEqual(
 
131
                'fake-link-base/2/null:',
 
132
                module.bmp_get_diff_url(0, 2));
 
133
            }
 
134
        }));
 
135
 
 
136
    var handle_complete = function(data) {
 
137
        window.status = '::::' + JSON.stringify(data);
 
138
        };
 
139
    Y.Test.Runner.on('complete', handle_complete);
 
140
    Y.Test.Runner.add(suite);
 
141
 
 
142
    var console = new Y.Console({newestOnTop: false});
 
143
    console.render('#log');
 
144
 
 
145
    // Start the test runner on Y.after to ensure all setup has had a
 
146
    // chance to complete.
 
147
    Y.after('domready', function() {
 
148
        Y.Test.Runner.run();
 
149
    });
 
150
});
 
151