taiga-front/app/modules/projects/project/project.controller.spec.coffee

131 lines
3.6 KiB
CoffeeScript

###
# Copyright (C) 2014-2016 Taiga Agile LLC <taiga@taiga.io>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# File: project.controller.spec.coffee
###
describe "ProjectController", ->
$controller = null
$q = null
provide = null
$rootScope = null
mocks = {}
_mockProjectService = () ->
mocks.projectService = {}
provide.value "tgProjectService", mocks.projectService
_mockAppMetaService = () ->
mocks.appMetaService = {
setfn: sinon.stub()
}
provide.value "tgAppMetaService", mocks.appMetaService
_mockAuth = () ->
mocks.auth = {
userData: Immutable.fromJS({username: "UserName"})
}
provide.value "$tgAuth", mocks.auth
_mockRouteParams = () ->
provide.value "$routeParams", {
pslug: "project-slug"
}
_mockTranslate = () ->
mocks.translate = {}
mocks.translate.instant = sinon.stub()
provide.value "$translate", mocks.translate
_mocks = () ->
module ($provide) ->
provide = $provide
_mockProjectService()
_mockRouteParams()
_mockAppMetaService()
_mockAuth()
_mockTranslate()
return null
_inject = (callback) ->
inject (_$controller_, _$q_, _$rootScope_) ->
$q = _$q_
$rootScope = _$rootScope_
$controller = _$controller_
beforeEach ->
module "taigaProjects"
_mocks()
_inject()
it "set local user", () ->
project = Immutable.fromJS({
name: "projectName"
members: []
})
ctrl = $controller "Project",
$scope: {}
expect(ctrl.user).to.be.equal(mocks.auth.userData)
it "set page title", () ->
$scope = $rootScope.$new()
project = Immutable.fromJS({
name: "projectName"
description: "projectDescription",
members: []
})
mocks.translate.instant
.withArgs('PROJECT.PAGE_TITLE', {
projectName: project.get("name")
})
.returns('projectTitle')
mocks.projectService.project = project
ctrl = $controller("Project")
metas = ctrl._setMeta(project)
expect(metas.title).to.be.equal('projectTitle')
expect(metas.description).to.be.equal('projectDescription')
expect(mocks.appMetaService.setfn).to.be.calledOnce
it "set local project variable and members", () ->
project = Immutable.fromJS({
name: "projectName"
})
members = Immutable.fromJS([
{is_active: true},
{is_active: true},
{is_active: true}
])
mocks.projectService.project = project
mocks.projectService.activeMembers = members
ctrl = $controller("Project")
expect(ctrl.project).to.be.equal(project)
expect(ctrl.members).to.be.equal(members)