-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
72 additions
and
0 deletions.
There are no files selected for viewing
32 changes: 32 additions & 0 deletions
32
src/test/scala/org/mbari/m3/panoptes/api/HealthApiSpec.scala
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,32 @@ | ||
/* | ||
* Copyright 2017 Monterey Bay Aquarium Research Institute | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.mbari.m3.panoptes.api | ||
|
||
import scala.concurrent.ExecutionContext | ||
|
||
class HealthApiSpec extends ApiTestStack { | ||
given ec: ExecutionContext = ExecutionContext.global | ||
private val api: HealthApi = new HealthApi() | ||
|
||
addServlet(api, "/v1/health") | ||
|
||
"HealthApi" should "GET" in { | ||
get("/v1/health") { | ||
status should be(200) | ||
} | ||
} | ||
} |
40 changes: 40 additions & 0 deletions
40
src/test/scala/org/mbari/m3/panoptes/auth/AuthorizationSpec.scala
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,40 @@ | ||
/* | ||
* Copyright 2017 Monterey Bay Aquarium Research Institute | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.mbari.m3.panoptes.auth | ||
|
||
import org.scalatest.flatspec.AnyFlatSpec | ||
import org.scalatest.matchers.must.Matchers | ||
import org.json4s.jackson.JsonMethods._ | ||
import org.json4s.jackson.Serialization._ | ||
import org.mbari.m3.panoptes.converters.json4s | ||
import org.json4s.Formats | ||
|
||
class AuthorizationSpec extends AnyFlatSpec with Matchers { | ||
|
||
given formats: Formats = json4s.CustomFormats | ||
|
||
"Authorization" should "serialize to snake-case JSON" in { | ||
val auth = new Authorization("BEARER", "12345") | ||
val s = write(auth) | ||
s must include ("tokenType") | ||
s must include ("accessToken") | ||
val t = write(auth.toSnakeCase) | ||
t must include ("token_type") | ||
t must include ("access_token") | ||
} | ||
|
||
} |