aboutsummaryrefslogtreecommitdiff
path: root/src/test/scala/xyz/driver/core/AuthTest.scala
diff options
context:
space:
mode:
authorzachdriver <zach@driver.xyz>2018-01-29 10:11:59 -0800
committerGitHub <noreply@github.com>2018-01-29 10:11:59 -0800
commitf5c5c18fd6e8038bc0f3831e47de94a55b46589a (patch)
treebf1d6c88545d403f30b44718ba30ffe5fcd2ee57 /src/test/scala/xyz/driver/core/AuthTest.scala
parent526307e0a534008ad6b7e4578d886c50d09ee2d2 (diff)
parentbecf2c5087a3a9c3b4b9385239cc35b7d05a24c4 (diff)
downloaddriver-core-f5c5c18fd6e8038bc0f3831e47de94a55b46589a.tar.gz
driver-core-f5c5c18fd6e8038bc0f3831e47de94a55b46589a.tar.bz2
driver-core-f5c5c18fd6e8038bc0f3831e47de94a55b46589a.zip
Merge pull request #106 from drivergroup/zsmith/remove-auth-idv1.7.0
Remove auth ID from AuthUserInfo and add expiration time to token
Diffstat (limited to 'src/test/scala/xyz/driver/core/AuthTest.scala')
-rw-r--r--src/test/scala/xyz/driver/core/AuthTest.scala5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/test/scala/xyz/driver/core/AuthTest.scala b/src/test/scala/xyz/driver/core/AuthTest.scala
index 1a483b9..6e5862a 100644
--- a/src/test/scala/xyz/driver/core/AuthTest.scala
+++ b/src/test/scala/xyz/driver/core/AuthTest.scala
@@ -12,6 +12,7 @@ import xyz.driver.core.domain.Email
import xyz.driver.core.logging._
import xyz.driver.core.rest._
import xyz.driver.core.rest.auth._
+import xyz.driver.core.time.Time
import scala.concurrent.Future
import scalaz.OptionT
@@ -56,11 +57,11 @@ class AuthTest extends FlatSpec with Matchers with ScalatestRouteTest {
Some(
AuthTokenUserInfo(
Id[User]("1"),
- authUserId = Id[AuthUser]("2"),
Email("foo", "bar"),
emailVerified = true,
audience = "driver",
- roles = Set(TestRole)
+ roles = Set(TestRole),
+ expirationTime = Time(1000000L)
)))
} else {
Future.successful(Option.empty[User])