aboutsummaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/static/js/tests/test.js
blob: d7953de4477204557e16b5059b66f2a0e15bcf11 (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
164
165
166
167
168
169
170
171
172
173
"use strict";
/* Unit tests for Toaster's JS */

/* libtoaster tests */
QUnit.test("Layer alert notification", function(assert) {
  var layer = {
    "layerdetailurl":"/toastergui/project/1/layer/22",
    "vcs_url":"git://example.com/example.git",
    "detail":"[ git://example.com/example.git | master ]",
    "vcs_reference":"master",
    "id": 22,
    "name":"meta-example"
  };

  var layerDepsList = [
    {
    "layerdetailurl":"/toastergui/project/1/layer/9",
    "vcs_url":"git://example.com/example.git",
    "detail":"[ git://example.com/example.git | master ]",
    "vcs_reference":"master",
    "id": 9,
    "name":"meta-example-two"
    },
    {
    "layerdetailurl":"/toastergui/project/1/layer/9",
    "vcs_url":"git://example.com/example.git",
    "detail":"[ git://example.com/example.git | master ]",
    "vcs_reference":"master",
    "id": 10,
    "name":"meta-example-three"
    },
  ];

  var msg = libtoaster.makeLayerAddRmAlertMsg(layer, layerDepsList, true);
  var test = $("<div></div>");

  test.html(msg);

  assert.equal(test.children("strong").text(), "3");
  assert.equal(test.children("a").length, 3);
});

QUnit.test("Project info", function(assert){
  var done = assert.async();
  libtoaster.getProjectInfo(libtoaster.ctx.xhrProjectUrl, function(prjInfo){
    assert.ok(prjInfo.machine.name);
    assert.ok(prjInfo.layers.length > 0);
    assert.ok(prjInfo.freqtargets);
    assert.ok(prjInfo.release);
    done();
  });
});

QUnit.test("Show notification", function(assert){
  var msg = "Testing";
  var element = $("#change-notification-msg");

  libtoaster.showChangeNotification(msg);

  assert.equal(element.text(), msg);
  assert.ok(element.is(":visible"));

  $("#change-notification").hide();
});

var layer = {
  "id": 1,
  "name":  "meta-testing",
  "layerdetailurl": "/toastergui/project/1/layer/1"
};

QUnit.test("Add layer", function(assert){
  var done = assert.async();

  /* Wait for the modal to be added to the dom */
  var checkModal = setInterval(function(){
    if ($("#dependencies-modal").length > 0) {
      $("#dependencies-modal .btn-primary").click();
      clearInterval(checkModal);
    }
  }, 200);

  /* Compare the number of layers before and after the add in the project */
  libtoaster.getProjectInfo(libtoaster.ctx.xhrProjectUrl, function(prjInfo){
    var origNumLayers = prjInfo.layers.length;

    libtoaster.addRmLayer(layer, true, function(deps){
      libtoaster.getProjectInfo(libtoaster.ctx.xhrProjectUrl,
        function(prjInfo){
        assert.ok(prjInfo.layers.length > origNumLayers,
          "Layer not added to project");
        done();
      });
    });
  });
});

QUnit.test("Rm layer", function(assert){
  var done = assert.async();

  libtoaster.addRmLayer(layer, false, function(deps){
    assert.equal(deps.length, 0);
    done();
  });

});

QUnit.test("Parse url params", function(assert){
  var params = libtoaster.parseUrlParams();
  assert.ok(params);
});

QUnit.test("Dump url params", function(assert){
  var params = libtoaster.dumpsUrlParams();
  assert.ok(params);
});

QUnit.test("Make typeaheads", function(assert){
  var layersT = $("#layers");
  var machinesT = $("#machines");
  var projectsT = $("#projects");
  var recipesT = $("#recipes");

  libtoaster.makeTypeahead(layersT,
    libtoaster.ctx.layersTypeAheadUrl, {}, function(){});

  libtoaster.makeTypeahead(machinesT,
    libtoaster.ctx.machinesTypeAheadUrl, {}, function(){});

  libtoaster.makeTypeahead(projectsT,
    libtoaster.ctx.projectsTypeAheadUrl, {}, function(){});

  libtoaster.makeTypeahead(recipesT,
    libtoaster.ctx.recipesTypeAheadUrl, {}, function(){});

  assert.ok(recipesT.data('ttTypeahead'));
  assert.ok(layersT.data('ttTypeahead'));
  assert.ok(projectsT.data('ttTypeahead'));
  assert.ok(recipesT.data('ttTypeahead'));
});



/* Page init functions */

QUnit.test("Import layer page init", function(assert){
  assert.throws(importLayerPageInit());
});

QUnit.test("Project page init", function(assert){
  assert.throws(projectPageInit());
});

QUnit.test("Layer details page init", function(assert){
  assert.throws(layerDetailsPageInit());
});

QUnit.test("Layer btns init", function(assert){
  assert.throws(layerBtnsInit());
});

QUnit.test("Table init", function(assert){
  assert.throws(tableInit({ url : ctx.tableUrl }));
});

$(document).ajaxError(function(event, jqxhr, settings, errMsg){
  if (errMsg === 'abort')
    return;

  QUnit.test("Ajax error", function(assert){
    assert.notOk(jqxhr.responseText);
  });
});