taiga-front/app/modules/projects/create/import/import-project.controller.s...

184 lines
4.9 KiB
CoffeeScript

###
# Copyright (C) 2014-2015 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: import-project.controller.spec.coffee
###
describe "ImportProjectCtrl", ->
$provide = null
$controller = null
mocks = {}
_mockConfig = ->
mocks.config = Immutable.fromJS({
importers: ['trello', 'github', 'jira', 'asana']
})
$provide.value("$tgConfig", mocks.config)
_mockTrelloImportService = ->
mocks.trelloService = {
authorize: sinon.stub(),
getAuthUrl: sinon.stub()
}
$provide.value("tgTrelloImportService", mocks.trelloService)
_mockJiraImportService = ->
mocks.jiraService = {
authorize: sinon.stub(),
getAuthUrl: sinon.stub()
}
$provide.value("tgJiraImportService", mocks.jiraService)
_mockGithubImportService = ->
mocks.githubService = {
authorize: sinon.stub(),
getAuthUrl: sinon.stub()
}
$provide.value("tgGithubImportService", mocks.githubService)
_mockAsanaImportService = ->
mocks.asanaService = {
authorize: sinon.stub(),
getAuthUrl: sinon.stub()
}
$provide.value("tgAsanaImportService", mocks.asanaService)
_mockWindow = ->
mocks.window = {
open: sinon.stub()
}
$provide.value("$window", mocks.window)
_mockLocation = ->
mocks.location = {
search: sinon.stub()
}
$provide.value("$location", mocks.location)
_mockRouteParams = ->
mocks.routeParams = {
platform: null
}
$provide.value("$routeParams", mocks.routeParams)
_mockTgNavUrls = ->
mocks.tgNavUrls = {
resolve: sinon.stub()
}
$provide.value("$tgNavUrls", mocks.tgNavUrls)
_mocks = ->
module (_$provide_) ->
$provide = _$provide_
_mockGithubImportService()
_mockTrelloImportService()
_mockJiraImportService()
_mockAsanaImportService()
_mockWindow()
_mockLocation()
_mockTgNavUrls()
_mockRouteParams()
_mockConfig()
return null
_inject = ->
inject (_$controller_) ->
$controller = _$controller_
_setup = ->
_mocks()
_inject()
beforeEach ->
module "taigaProjects"
_setup()
it "initialize form with trello", (done) ->
searchResult = {
oauth_verifier: 123,
token: "token"
}
mocks.location.search.returns(searchResult)
mocks.trelloService.authorize.withArgs(123).promise().resolve("token2")
ctrl = $controller("ImportProjectCtrl")
mocks.routeParams.platform = 'trello'
ctrl.start().then () ->
expect(mocks.location.search).have.been.calledWith({token: "token2"})
done()
it "initialize form with github", (done) ->
searchResult = {
code: 123,
token: "token",
from: "github"
}
mocks.location.search.returns(searchResult)
mocks.githubService.authorize.withArgs(123).promise().resolve("token2")
ctrl = $controller("ImportProjectCtrl")
mocks.routeParams.platform = 'github'
ctrl.start().then () ->
expect(mocks.location.search).have.been.calledWith({token: "token2"})
done()
it "initialize form with asana", (done) ->
searchResult = {
code: 123,
token: encodeURIComponent("{\"token\": 222}")
from: "asana"
}
mocks.location.search.returns(searchResult)
mocks.asanaService.authorize.withArgs(123).promise().resolve("token2")
ctrl = $controller("ImportProjectCtrl")
mocks.routeParams.platform = 'asana'
ctrl.start().then () ->
expect(mocks.location.search).have.been.calledWith({token: encodeURIComponent(JSON.stringify("token2"))})
done()
it "select trello import", () ->
ctrl = $controller("ImportProjectCtrl")
mocks.trelloService.getAuthUrl.promise().resolve("url")
ctrl.select("trello").then () ->
expect(mocks.window.open).have.been.calledWith("url", "_self")