kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
2.8 KiB
87 lines
2.8 KiB
11 years ago
|
//-- copyright
|
||
|
// OpenProject is a project management system.
|
||
10 years ago
|
// Copyright (C) 2012-2015 the OpenProject Foundation (OPF)
|
||
11 years ago
|
//
|
||
|
// This program is free software; you can redistribute it and/or
|
||
|
// modify it under the terms of the GNU General Public License version 3.
|
||
|
//
|
||
|
// OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
||
|
// Copyright (C) 2006-2013 Jean-Philippe Lang
|
||
|
// Copyright (C) 2010-2013 the ChiliProject Team
|
||
|
//
|
||
|
// This program is free software; you can redistribute it and/or
|
||
|
// modify it under the terms of the GNU General Public License
|
||
|
// as published by the Free Software Foundation; either version 2
|
||
|
// of the License, or (at your option) any later version.
|
||
|
//
|
||
|
// This program is distributed in the hope that it will be useful,
|
||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
// GNU General Public License for more details.
|
||
|
//
|
||
|
// You should have received a copy of the GNU General Public License
|
||
|
// along with this program; if not, write to the Free Software
|
||
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||
|
//
|
||
|
// See doc/COPYRIGHT.rdoc for more details.
|
||
|
//++
|
||
|
|
||
8 years ago
|
import {opApiModule, opServicesModule, opViewModelsModule} from '../../angular-modules';
|
||
11 years ago
|
|
||
8 years ago
|
describe('ProjectService', () => {
|
||
|
var $httpBackend;
|
||
|
var ProjectService;
|
||
|
beforeEach(angular.mock.module(
|
||
|
opApiModule.name,
|
||
|
opServicesModule.name,
|
||
|
opViewModelsModule.name
|
||
|
));
|
||
11 years ago
|
|
||
8 years ago
|
beforeEach(angular.mock.inject(function (_$httpBackend_, _ProjectService_) {
|
||
|
[$httpBackend, ProjectService] = _.toArray(arguments);
|
||
11 years ago
|
}));
|
||
|
|
||
8 years ago
|
afterEach(() => {
|
||
11 years ago
|
$httpBackend.verifyNoOutstandingExpectation();
|
||
|
$httpBackend.verifyNoOutstandingRequest();
|
||
|
});
|
||
|
|
||
8 years ago
|
describe('getProject', () => {
|
||
|
beforeEach(() => {
|
||
11 years ago
|
$httpBackend.when('GET', '/api/experimental/projects/superProject')
|
||
11 years ago
|
.respond({
|
||
8 years ago
|
project: {
|
||
|
id: 99,
|
||
|
name: 'Super-Duper Project',
|
||
|
parent_id: null,
|
||
|
'leaf?': true
|
||
11 years ago
|
}
|
||
|
});
|
||
11 years ago
|
});
|
||
11 years ago
|
|
||
8 years ago
|
it('sends a successful get request', () => {
|
||
11 years ago
|
$httpBackend.expectGET('/api/experimental/projects/superProject');
|
||
11 years ago
|
|
||
8 years ago
|
var callback = sinon.spy();
|
||
|
var project = ProjectService.getProject('superProject').then(callback);
|
||
11 years ago
|
|
||
|
$httpBackend.flush();
|
||
|
expect(callback).to.have.been.calledWith(sinon.match({
|
||
8 years ago
|
name: 'Super-Duper Project'
|
||
11 years ago
|
}));
|
||
|
});
|
||
|
|
||
8 years ago
|
it('sends a unsuccessful get request', () => {
|
||
11 years ago
|
$httpBackend.expectGET('/api/experimental/projects/superProject').respond(401);
|
||
11 years ago
|
|
||
8 years ago
|
var success = sinon.spy();
|
||
|
var error = sinon.spy();
|
||
|
var project = ProjectService.getProject('superProject').then(success, error);
|
||
11 years ago
|
|
||
|
$httpBackend.flush();
|
||
|
expect(success).not.to.have.been.called;
|
||
|
expect(error).to.have.been.called;
|
||
|
});
|
||
|
});
|
||
|
});
|