2016-08-17 11:14:17 +00:00
|
|
|
port module Main exposing (..)
|
2016-03-12 21:57:00 +00:00
|
|
|
|
2016-08-17 11:14:17 +00:00
|
|
|
import Test.Runner.Node exposing (run)
|
|
|
|
import Json.Encode exposing (Value)
|
|
|
|
import Test exposing (..)
|
|
|
|
import Expect
|
2016-03-27 19:33:51 +00:00
|
|
|
import RunLengthEncoding exposing (version, decode, encode)
|
2016-03-12 21:57:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
tests : Test
|
|
|
|
tests =
|
2016-08-17 11:14:17 +00:00
|
|
|
describe "RunLengthEncoding"
|
|
|
|
[ test "the solution is for the correct version of the test" <|
|
|
|
|
\() -> Expect.equal 2 version
|
|
|
|
, test "encode simple" <|
|
|
|
|
\() -> Expect.equal "2A3B4C" (encode "AABBBCCCC")
|
|
|
|
, test "decode simple" <|
|
|
|
|
\() -> Expect.equal "AABBBCCCC" (decode "2A3B4C")
|
|
|
|
, test "encode with single values" <|
|
|
|
|
\() ->
|
|
|
|
Expect.equal "12WB12W3B24WB"
|
|
|
|
(encode "WWWWWWWWWWWWBWWWWWWWWWWWWBBBWWWWWWWWWWWWWWWWWWWWWWWWB")
|
|
|
|
, test "decode with single values" <|
|
|
|
|
\() ->
|
|
|
|
Expect.equal "WWWWWWWWWWWWBWWWWWWWWWWWWBBBWWWWWWWWWWWWWWWWWWWWWWWWB"
|
|
|
|
(decode "12WB12W3B24WB")
|
|
|
|
, test "(decode (encode (...)) combination" <|
|
|
|
|
\() ->
|
|
|
|
Expect.equal "zzz ZZ zZ"
|
|
|
|
(decode (encode "zzz ZZ zZ"))
|
|
|
|
, test "decode with a x10 value" <|
|
|
|
|
\() ->
|
|
|
|
Expect.equal "WWWWWWWWWW"
|
|
|
|
(decode "10W")
|
|
|
|
, test "encode unicode" <|
|
|
|
|
\() -> Expect.equal "⏰3⚽2⭐⏰" (encode "⏰⚽⚽⚽⭐⭐⏰")
|
|
|
|
, test "decode unicode" <|
|
|
|
|
\() -> Expect.equal "⏰⚽⚽⚽⭐⭐⏰" (decode "⏰3⚽2⭐⏰")
|
2016-06-19 21:46:13 +00:00
|
|
|
]
|
2016-03-12 21:57:00 +00:00
|
|
|
|
|
|
|
|
2016-05-13 02:26:52 +00:00
|
|
|
main : Program Never
|
|
|
|
main =
|
2016-08-17 11:14:17 +00:00
|
|
|
run emit tests
|
|
|
|
|
|
|
|
|
|
|
|
port emit : ( String, Value ) -> Cmd msg
|