1
/* Copyright 2010 Canonical Ltd. This software is licensed under the
2
* GNU Affero General Public License version 3 (see the file LICENSE).
4
* Tests for lp.code.branch.revisionexpander.
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) {
14
var module = Y.lp.code.branch.revisionexpander;
15
var suite = new Y.Test.Suite("branch.revisionexpander Tests");
17
var MockClient = function() {};
18
MockClient.prototype = {
20
'get': function(uri, config) {
21
this.calls.push({'uri': uri});
22
config.on.success(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" +
37
suite.add(new Y.Test.Case({
38
name: 'Test difftext_to_node',
41
* Unified diffs are rendered to a table, one row per line
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
50
Y.Assert.areEqual(9, node.get('children').size());
54
* Diffs are not interpreted as HTML.
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'));
63
suite.add(new Y.Test.Case({
64
name: 'Tests for bmp_diff_loader and bmp_get_diff_url',
67
LP.cache.branch_diff_link = 'fake-link-base/';
70
tearDown: function() {
71
delete LP.cache.branch_diff_link;
75
* bmp_diff_loader fetches from the URI specified by the div id and
78
test_bmp_diff_loader_fetches_from_diff_uri: function() {
79
var FakeExpander = function() {};
80
FakeExpander.prototype = {
82
Y.Node.create('<div id="expandable-23-45"></div>'),
83
'receive': function (node) {
84
this.received_node = node;
87
var mock_client = new MockClient();
88
var fake_expander = new FakeExpander();
89
module.bmp_diff_loader(fake_expander, mock_client);
91
'fake-link-base/45/22', mock_client.calls[0].uri);
93
'TABLE', fake_expander.received_node.get('tagName'));
97
* bmp_get_diff_url(revno) gets the URL for a diff of just that revision
99
test_bmp_get_diff_url_one_arg: function() {
101
'fake-link-base/1234',
102
module.bmp_get_diff_url(1234));
106
* bmp_get_diff_url(start_revno, end_revno) gets the URL for a diff of
107
* the given revision range.
109
test_bmp_get_diff_url_two_args: function() {
111
'fake-link-base/33/22',
112
module.bmp_get_diff_url(22, 33));
116
* bmp_get_diff_url(0, 1) just returns URL_BASE/1, rather than
117
* URL_BASE/1/0 which Loggerhead will reject.
119
test_bmp_get_diff_url_of_0_to_1: function() {
122
module.bmp_get_diff_url(0, 1));
126
* bmp_get_diff_url(0, 2) just returns URL_BASE/1, rather than
127
* URL_BASE/1/0 which Loggerhead will reject.
129
test_bmp_get_diff_url_of_0_to_2: function() {
131
'fake-link-base/2/null:',
132
module.bmp_get_diff_url(0, 2));
136
var handle_complete = function(data) {
137
window.status = '::::' + JSON.stringify(data);
139
Y.Test.Runner.on('complete', handle_complete);
140
Y.Test.Runner.add(suite);
142
var console = new Y.Console({newestOnTop: false});
143
console.render('#log');
145
// Start the test runner on Y.after to ensure all setup has had a
146
// chance to complete.
147
Y.after('domready', function() {