FunctionalCuid/FunctionalCuid.Tests/Program.fs

129 lines
4.5 KiB
Forth
Raw Normal View History

2017-12-06 04:01:51 +00:00

open Cuid
2017-12-06 04:01:51 +00:00
open Expecto
module CuidTests =
2017-12-06 04:01:51 +00:00
[<Tests>]
let generateTests =
testList "Cuid.generate" [
test "succeeds" {
let (Cuid cuid) = Cuid.generate ()
Expect.stringHasLength cuid 25 "A CUID should be 25 characters"
Expect.stringStarts cuid "c" """A CUID should start with a "c" character"""
}
]
[<Tests>]
let fromStringTests =
testList "Cuid.fromString" [
test "fails when string is null" {
let x = Cuid.fromString null
Expect.isError x "Parsing should have returned an error"
let msg = match x with Error y -> y | _ -> ""
Expect.equal msg "string was null" "Expected error message not returned"
}
test "fails when string is not 25 characters" {
let x = Cuid.fromString "c12345566677893508"
Expect.isError x "Parsing should have returned an error"
let msg = match x with Error y -> y | _ -> ""
Expect.equal msg "string was not 25 characters (length 18)" "Expected error message not returned"
}
test "fails when string does not start with c" {
let x = Cuid.fromString "djld2cyuq0000t3rmniod1foy"
Expect.isError x "Parsing should have returned an error"
let msg = match x with Error y -> y | _ -> ""
Expect.equal msg """string did not start with "c" ("djld2cyuq0000t3rmniod1foy")"""
"Expected error message not returned"
}
test "succeeds" {
let x = Cuid.fromString "cjld2cyuq0000t3rmniod1foy"
Expect.isOk x "Parsing should have returned Ok"
let cuid = match x with Ok y -> y | _ -> Cuid ""
Expect.equal cuid (Cuid "cjld2cyuq0000t3rmniod1foy") "CUID value not correct"
}
]
[<Tests>]
let toStringTests =
testList "Cuid.toString" [
test "succeeds" {
let cuidString = (Cuid >> Cuid.toString) "abc123"
Expect.equal cuidString "abc123" "The CUID string should have been the string value of the CUID"
}
]
[<Tests>]
let generateStringTests =
testList "Cuid.generateString" [
test "succeeds" {
let cuidString = Cuid.generateString ()
Expect.stringHasLength cuidString 25 "A CUID string should be 25 characters"
Expect.stringStarts cuidString "c" """A CUID string should start with a "c" character"""
}
]
module SlugTests =
let isProperLength (x : string) = x.Length >= 7 && x.Length <= 10
[<Tests>]
let generateTests =
testList "Slug.generate" [
test "succeeds" {
let (Slug slug) = Slug.generate ()
Expect.isTrue (isProperLength slug) "A Slug should be between 7 to 10 characters"
}
]
[<Tests>]
let fromStringTests =
testList "Slug.fromString" [
test "fails when string is null" {
let x = Slug.fromString null
Expect.isError x "Parsing should have returned an error"
let msg = match x with Error y -> y | _ -> ""
Expect.equal msg "string was null" "Expected error message not returned"
}
test "fails when string is less than 7 characters" {
let x = Slug.fromString "12345"
Expect.isError x "Parsing should have returned an error"
let msg = match x with Error y -> y | _ -> ""
Expect.equal msg "string must be at least 7 characters (length 5)" "Expected error message not returned"
}
test "fails when string is more than 10 characters" {
let x = Slug.fromString "abcdefghijklmnop"
Expect.isError x "Parsing should have returned an error"
let msg = match x with Error y -> y | _ -> ""
Expect.equal msg "string must not exceed 10 characters (length 16)" "Expected error message not returned"
}
test "succeeds" {
let x = Slug.fromString "cyuq0000t"
Expect.isOk x "Parsing should have returned Ok"
let slug = match x with Ok y -> y | _ -> Slug ""
Expect.equal slug (Slug "cyuq0000t") "Slug value not correct"
}
]
[<Tests>]
let toStringTests =
testList "Slug.toString" [
test "Create a string from a Slug" {
let slugString = (Slug >> Slug.toString) "5551234"
Expect.equal slugString "5551234" "The Slug string should have been the string value of the Slug"
}
]
[<Tests>]
let generateStringTests =
testList "Slug.generateString" [
test "succeeds" {
let slugString = Slug.generateString ()
Expect.isTrue (isProperLength slugString) "A Slug string should be between 7 to 10 characaters"
}
]
2017-12-06 04:01:51 +00:00
[<EntryPoint>]
let main argv =
runTestsInAssembly defaultConfig argv