188 lines
5.2 KiB
CoffeeScript
188 lines
5.2 KiB
CoffeeScript
###
|
|
# Copyright (C) 2014-2017 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: profile.controller.spec.coffee
|
|
###
|
|
|
|
describe "ProfileController", ->
|
|
provide = null
|
|
$controller = null
|
|
$rootScope = null
|
|
mocks = {}
|
|
|
|
projects = Immutable.fromJS([
|
|
{id: 1},
|
|
{id: 2},
|
|
{id: 3}
|
|
])
|
|
|
|
_mockTranslate = () ->
|
|
mocks.translate = {}
|
|
mocks.translate.instant = sinon.stub()
|
|
|
|
provide.value "$translate", mocks.translate
|
|
|
|
_mockAppMetaService = () ->
|
|
mocks.appMetaService = {
|
|
setAll: sinon.spy()
|
|
}
|
|
|
|
provide.value "tgAppMetaService", mocks.appMetaService
|
|
|
|
_mockCurrentUser = () ->
|
|
mocks.currentUser = {
|
|
getUser: sinon.stub()
|
|
}
|
|
|
|
provide.value "tgCurrentUserService", mocks.currentUser
|
|
|
|
_mockUserService = () ->
|
|
mocks.userService = {
|
|
getUserByUserName: sinon.stub()
|
|
}
|
|
|
|
provide.value "tgUserService", mocks.userService
|
|
|
|
_mockRouteParams = () ->
|
|
mocks.routeParams = {}
|
|
|
|
provide.value "$routeParams", mocks.routeParams
|
|
|
|
_mockXhrErrorService = () ->
|
|
mocks.xhrErrorService = {
|
|
response: sinon.spy(),
|
|
notFound: sinon.spy()
|
|
}
|
|
|
|
provide.value "tgXhrErrorService", mocks.xhrErrorService
|
|
|
|
_mocks = () ->
|
|
module ($provide) ->
|
|
provide = $provide
|
|
_mockTranslate()
|
|
_mockAppMetaService()
|
|
_mockCurrentUser()
|
|
_mockRouteParams()
|
|
_mockUserService()
|
|
_mockXhrErrorService()
|
|
return null
|
|
|
|
_inject = (callback) ->
|
|
inject (_$controller_, _$rootScope_) ->
|
|
$rootScope = _$rootScope_
|
|
$controller = _$controller_
|
|
|
|
beforeEach ->
|
|
module "taigaProfile"
|
|
|
|
_mocks()
|
|
_inject()
|
|
|
|
it "define external user", (done) ->
|
|
$scope = $rootScope.$new()
|
|
|
|
mocks.routeParams.slug = "user-slug"
|
|
|
|
user = Immutable.fromJS({
|
|
username: "username",
|
|
full_name_display: "full-name-display",
|
|
bio: "bio",
|
|
is_active: true
|
|
})
|
|
|
|
mocks.translate.instant
|
|
.withArgs('USER.PROFILE.PAGE_TITLE', {
|
|
userFullName: user.get("full_name_display"),
|
|
userUsername: user.get("username")
|
|
})
|
|
.returns('user-profile-page-title')
|
|
|
|
mocks.userService.getUserByUserName.withArgs(mocks.routeParams.slug).promise().resolve(user)
|
|
|
|
ctrl = $controller("Profile")
|
|
|
|
setTimeout ( ->
|
|
expect(ctrl.user).to.be.equal(user)
|
|
expect(ctrl.isCurrentUser).to.be.false
|
|
expect(mocks.appMetaService.setAll.calledWithExactly("user-profile-page-title", "bio")).to.be.true
|
|
done()
|
|
)
|
|
|
|
it "non-existent user", (done) ->
|
|
$scope = $rootScope.$new()
|
|
|
|
mocks.routeParams.slug = "user-slug"
|
|
|
|
error = new Error('404')
|
|
|
|
mocks.userService.getUserByUserName.withArgs(mocks.routeParams.slug).promise().reject(error)
|
|
|
|
ctrl = $controller("Profile")
|
|
|
|
setTimeout ( ->
|
|
expect(mocks.xhrErrorService.response.withArgs(error)).to.be.calledOnce
|
|
done()
|
|
)
|
|
|
|
it "define current user", (done) ->
|
|
$scope = $rootScope.$new()
|
|
|
|
user = Immutable.fromJS({
|
|
username: "username",
|
|
full_name_display: "full-name-display",
|
|
bio: "bio",
|
|
is_active: true
|
|
})
|
|
|
|
mocks.translate.instant
|
|
.withArgs('USER.PROFILE.PAGE_TITLE', {
|
|
userFullName: user.get("full_name_display"),
|
|
userUsername: user.get("username")
|
|
})
|
|
.returns('user-profile-page-title')
|
|
|
|
mocks.currentUser.getUser.returns(user)
|
|
|
|
ctrl = $controller("Profile")
|
|
|
|
setTimeout ( ->
|
|
expect(ctrl.user).to.be.equal(user)
|
|
expect(ctrl.isCurrentUser).to.be.true
|
|
expect(mocks.appMetaService.setAll.withArgs("user-profile-page-title", "bio")).to.be.calledOnce
|
|
done()
|
|
)
|
|
|
|
it "non-active user", (done) ->
|
|
$scope = $rootScope.$new()
|
|
|
|
mocks.routeParams.slug = "user-slug"
|
|
|
|
user = Immutable.fromJS({
|
|
username: "username",
|
|
full_name_display: "full-name-display",
|
|
bio: "bio",
|
|
is_active: false
|
|
})
|
|
|
|
mocks.userService.getUserByUserName.withArgs(mocks.routeParams.slug).promise().resolve(user)
|
|
|
|
ctrl = $controller("Profile")
|
|
|
|
setTimeout ( ->
|
|
expect(mocks.xhrErrorService.notFound).to.be.calledOnce
|
|
done()
|
|
)
|