Skip to content

Commit

Permalink
Check point
Browse files Browse the repository at this point in the history
  • Loading branch information
hohonuuli committed Apr 1, 2024
1 parent e9029bf commit 93cfd90
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 0 deletions.
32 changes: 32 additions & 0 deletions src/test/scala/org/mbari/m3/panoptes/api/HealthApiSpec.scala
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 src/test/scala/org/mbari/m3/panoptes/auth/AuthorizationSpec.scala
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")
}

}

0 comments on commit 93cfd90

Please sign in to comment.