2023-12-24 01:16:52 +00:00
|
|
|
module Test.Values.Envelope exposing (..)
|
|
|
|
|
|
|
|
import Expect
|
|
|
|
import Fuzz exposing (Fuzzer)
|
|
|
|
import Internal.Config.Default as Default
|
|
|
|
import Internal.Values.Envelope as Envelope exposing (Envelope)
|
|
|
|
import Test exposing (..)
|
|
|
|
import Test.Values.Context as TestContext
|
|
|
|
import Test.Values.Settings as TestSettings
|
|
|
|
|
|
|
|
|
|
|
|
fuzzer : Fuzzer a -> Fuzzer (Envelope a)
|
|
|
|
fuzzer fuz =
|
|
|
|
Fuzz.map3 Envelope
|
|
|
|
fuz
|
|
|
|
TestContext.fuzzer
|
|
|
|
TestSettings.fuzzer
|
|
|
|
|
|
|
|
|
|
|
|
suite : Test
|
|
|
|
suite =
|
|
|
|
describe "Envelope value"
|
|
|
|
[ describe "init"
|
|
|
|
[ describe "Default settings"
|
|
|
|
[ fuzz Fuzz.string
|
|
|
|
"currentVersion"
|
|
|
|
(\s ->
|
2024-07-19 07:02:01 +00:00
|
|
|
{ content = s, serverName = "", user = Nothing }
|
2023-12-24 01:16:52 +00:00
|
|
|
|> Envelope.init
|
|
|
|
|> Envelope.extractSettings .currentVersion
|
|
|
|
|> Expect.equal Default.currentVersion
|
|
|
|
)
|
|
|
|
, fuzz Fuzz.string
|
|
|
|
"deviceName"
|
|
|
|
(\s ->
|
2024-07-19 07:02:01 +00:00
|
|
|
{ content = s, serverName = "", user = Nothing }
|
2023-12-24 01:16:52 +00:00
|
|
|
|> Envelope.init
|
|
|
|
|> Envelope.extractSettings .deviceName
|
|
|
|
|> Expect.equal Default.deviceName
|
|
|
|
)
|
|
|
|
, fuzz Fuzz.string
|
|
|
|
"syncTime"
|
|
|
|
(\s ->
|
2024-07-19 07:02:01 +00:00
|
|
|
{ content = s, serverName = "", user = Nothing }
|
2023-12-24 01:16:52 +00:00
|
|
|
|> Envelope.init
|
|
|
|
|> Envelope.extractSettings .syncTime
|
|
|
|
|> Expect.equal Default.syncTime
|
|
|
|
)
|
|
|
|
]
|
|
|
|
]
|
2024-05-30 21:15:40 +00:00
|
|
|
|
|
|
|
-- , describe "JSON"
|
|
|
|
-- [ fuzz2 (fuzzer Fuzz.string)
|
|
|
|
-- Fuzz.int
|
|
|
|
-- "JSON encode -> JSON decode"
|
|
|
|
-- (\envelope indent ->
|
|
|
|
-- envelope
|
|
|
|
-- |> Envelope.encode Json.string
|
|
|
|
-- |> E.encode indent
|
|
|
|
-- |> D.decodeString (Envelope.decoder Json.string)
|
|
|
|
-- |> Expect.equal (Ok ( envelope, [] ))
|
|
|
|
-- )
|
|
|
|
-- ]
|
2023-12-24 01:16:52 +00:00
|
|
|
]
|