Skip to content

Commit

Permalink
add tests
Browse files Browse the repository at this point in the history
  • Loading branch information
asr2003 authored Sep 19, 2024
1 parent 95fb33f commit 310e91c
Showing 1 changed file with 35 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
package zio.http.codec

import zio._
import zio.test.Assertion._
import zio.test._

object PathCodecPlatformSpecificSpec extends ZIOSpecDefault {

def spec = suite("PathCodecJSPlatformSpecificSpec")(
test("parseInt should correctly parse a valid integer from a CharSequence") {
val charSequence = "12345"
val result = new PathCodecPlatformSpecific {}.parseInt(charSequence, 0, charSequence.length, 10)
assert(result)(equalTo(12345))
},
test("parseInt should throw an error for an invalid radix") {
val charSequence = "12345"
val result = ZIO.attempt {
new PathCodecPlatformSpecific {}.parseInt(charSequence, 0, charSequence.length, Character.MAX_RADIX + 1)
}.either
assertZIO(result)(isLeft(hasMessage(containsString("radix"))))
},
test("parseLong should correctly parse a valid long from a CharSequence") {
val charSequence = "123456789012345"
val result = new PathCodecPlatformSpecific {}.parseLong(charSequence, 0, charSequence.length, 10)
assert(result)(equalTo(123456789012345L))
},
test("parseLong should throw an error for an invalid input") {
val charSequence = "invalid123"
val result = ZIO.attempt {
new PathCodecPlatformSpecific {}.parseLong(charSequence, 0, charSequence.length, 10)
}.either
assertZIO(result)(isLeft(hasMessage(containsString("Error at index"))))
},
)
}

0 comments on commit 310e91c

Please sign in to comment.