-
Notifications
You must be signed in to change notification settings - Fork 430
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2343 from hongwei1/develop
bugfix/tweaked the extractCleanRedirectURL method
- Loading branch information
Showing
2 changed files
with
48 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/** | ||
* Open Bank Project - API | ||
* Copyright (C) 2011-2019, TESOBE GmbH. | ||
* | ||
* 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/>. | ||
* | ||
* Email: [email protected] | ||
* TESOBE GmbH. | ||
* Osloer Strasse 16/17 | ||
* Berlin 13359, Germany | ||
* | ||
* This product includes software developed at | ||
* TESOBE (http://www.tesobe.com/) | ||
* | ||
*/ | ||
|
||
package code.util | ||
|
||
|
||
import code.api.util._ | ||
import code.setup.PropsReset | ||
import org.scalatest.{FeatureSpec, GivenWhenThen, Matchers} | ||
|
||
|
||
class HelperTest extends FeatureSpec with Matchers with GivenWhenThen with PropsReset { | ||
|
||
feature("test APIUtil.basicUrlValidation method") { | ||
val testString1 = "http://localhost:8082/oauthcallback?oauth_token=G5AEA2U1WG404EGHTIGBHKRR4YJZAPPHWKOMNEEV&oauth_verifier=53018" | ||
val testString2 = "http://localhost:8082?oauth_token=G5AEA2U1WG404EGHTIGBHKRR4YJZAPPHWKOMNEEV&oauth_verifier=53018" | ||
|
||
Helper.extractCleanRedirectURL(testString1).head should be("http://localhost:8082/oauthcallback") | ||
Helper.extractCleanRedirectURL(testString2).head should be("http://localhost:8082") | ||
|
||
} | ||
|
||
} |