Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
gitlab-ce
Commits
aae82d76
Commit
aae82d76
authored
Nov 19, 2016
by
winniehell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adjust build_spec to match fixture
parent
0bf14cb0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
9 deletions
+16
-9
spec/javascripts/build_spec.js.es6
spec/javascripts/build_spec.js.es6
+16
-9
No files found.
spec/javascripts/build_spec.js.es6
View file @
aae82d76
...
...
@@ -11,6 +11,13 @@
(() => {
describe('Build', () => {
// see spec/factories/ci/builds.rb
const BUILD_TRACE = 'BUILD TRACE';
// see lib/ci/ansi2html.rb
const INITIAL_BUILD_TRACE_STATE = window.btoa(JSON.stringify({
offset: BUILD_TRACE.length, n_open_tags: 0, fg_color: null, bg_color: null, style_mask: 0,
}));
fixture.preload('builds/build-with-artifacts.html.raw');
beforeEach(function () {
...
...
@@ -33,11 +40,11 @@
});
it('copies build options', function () {
expect(this.build.pageUrl).toBe('http://
example.com/root/test-build/builds/2
');
expect(this.build.buildUrl).toBe('http://
example.com/root/test-build/builds/2
.json');
expect(this.build.buildStatus).toBe('
passed
');
expect(this.build.pageUrl).toBe('http://
test.host/namespace1/project1/builds/1
');
expect(this.build.buildUrl).toBe('http://
test.host/namespace1/project1/builds/1
.json');
expect(this.build.buildStatus).toBe('
success
');
expect(this.build.buildStage).toBe('test');
expect(this.build.state).toBe(
'buildstate'
);
expect(this.build.state).toBe(
INITIAL_BUILD_TRACE_STATE
);
});
it('only shows the jobs matching the current stage', function () {
...
...
@@ -73,7 +80,7 @@
it('displays the initial build trace', function () {
expect($.ajax.calls.count()).toBe(1);
const [{ url, dataType, success, context }] = $.ajax.calls.argsFor(0);
expect(url).toBe('http://
example.com/root/test-build/builds/2
.json');
expect(url).toBe('http://
test.host/namespace1/project1/builds/1
.json');
expect(dataType).toBe('json');
expect(success).toEqual(jasmine.any(Function));
...
...
@@ -95,7 +102,7 @@
$('.js-build-options').data('buildStatus', 'running');
this.build = new Build();
spyOn(this.build, 'location')
.and.returnValue('http://
example.com/root/test-build/builds/2
');
.and.returnValue('http://
test.host/namespace1/project1/builds/1
');
});
it('updates the build trace on an interval', function () {
...
...
@@ -104,7 +111,7 @@
expect($.ajax.calls.count()).toBe(2);
let [{ url, dataType, success, context }] = $.ajax.calls.argsFor(1);
expect(url).toBe(
'http://example.com/root/test-build/builds/2/trace.json?state=buildstate'
`http://test.host/namespace1/project1/builds/1/trace.json?state=${encodeURIComponent(INITIAL_BUILD_TRACE_STATE)}`
);
expect(dataType).toBe('json');
expect(success).toEqual(jasmine.any(Function));
...
...
@@ -124,7 +131,7 @@
expect($.ajax.calls.count()).toBe(3);
[{ url, dataType, success, context }] = $.ajax.calls.argsFor(2);
expect(url).toBe(
'http://
example.com/root/test-build/builds/2
/trace.json?state=newstate'
'http://
test.host/namespace1/project1/builds/1
/trace.json?state=newstate'
);
expect(dataType).toBe('json');
expect(success).toEqual(jasmine.any(Function));
...
...
@@ -175,7 +182,7 @@
});
expect(Turbolinks.visit).toHaveBeenCalledWith(
'http://
example.com/root/test-build/builds/2
'
'http://
test.host/namespace1/project1/builds/1
'
);
});
});
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment