Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add tests to check if the ZIO Runtime is propagated to req execution #2809

Merged
merged 6 commits into from
May 2, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion zio-http/jvm/src/test/scala/zio/http/FormSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ object FormSpec extends ZIOHttpSpec {
)
}
} @@ samples(10),
)
) @@ sequential
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Marked this test suite as sequential hoping it'll fix the flakiness


def spec =
suite("FormSpec")(urlEncodedSuite, multiFormSuite, multiFormStreamingSuite)
Expand Down
70 changes: 70 additions & 0 deletions zio-http/jvm/src/test/scala/zio/http/ServerRuntimeSpec.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
/*
* Copyright 2021 - 2023 Sporta Technologies PVT LTD & the ZIO HTTP contributors.
*
* 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 zio.http

import zio._
import zio.test.TestAspect._
import zio.test._

import zio.http.internal.{DynamicServer, HttpRunnableSpec}
import zio.http.netty.NettyConfig

object ServerRuntimeSpec extends HttpRunnableSpec {

override val bootstrap: ZLayer[Any, Any, TestEnvironment] =
ZLayer.make[TestEnvironment](
testEnvironment,
Runtime.enableWorkStealing,
Runtime.setUnhandledErrorLogLevel(LogLevel.Warning),
)

override def spec =
suite("ServerRuntimeSpec") {
test("runtime flags are propagated") {
val server = Routes(
Method.GET / "test" -> handler(ZIO.runtimeFlags.map(f => Response.text(f.toString))),
)
ZIO.runtimeFlags.flatMap { outer =>
ZIO
.scoped(serve)
.zipRight(server.deploy.body.run(path = Path.root / "test", method = Method.GET))
.flatMap(_.asString(Charsets.Utf8))
.map(b => assertTrue(b == outer.toString))
}
} +
test("fiber refs are propagated") {
val server = Routes(
Method.GET / "test" -> handler(
ZIO.getFiberRefs.map(f => Response.text(f.get(FiberRef.unhandledErrorLogLevel).get.toString)),
),
)
ZIO
.scoped(serve)
.zipRight(server.deploy.body.run(path = Path.root / "test", method = Method.GET))
.flatMap(_.asString(Charsets.Utf8))
.map(b => assertTrue(b == "Some(LogLevel(30000,WARN,4))"))
}
}
.provideSomeLayer[DynamicServer & Server.Config & Server & Client](Scope.default)
.provideShared(
DynamicServer.live,
Server.customized,
ZLayer.succeed(Server.Config.default),
ZLayer.succeed(NettyConfig.defaultWithFastShutdown),
Client.default,
) @@ sequential @@ withLiveClock
}
Loading