souplesse/tests/UnitTest.hs

94 lines
3.2 KiB
Haskell
Raw Normal View History

2024-10-30 13:30:33 +00:00
{-# LANGUAGE QuasiQuotes #-}
2024-10-27 20:19:58 +00:00
module Main where
2024-10-27 23:13:39 +00:00
2024-10-29 21:22:49 +00:00
import qualified Track
2024-10-30 13:30:33 +00:00
import Text.RawString.QQ(r)
2024-10-27 20:19:58 +00:00
import Test.HUnit
import qualified System.Exit as Exit
2024-10-28 23:35:36 +00:00
import Control.Exception
import Debug.Trace (trace, traceShow)
2024-10-27 20:19:58 +00:00
2024-10-30 13:30:33 +00:00
preamble = [r|
<?xml version="1.0" encoding="UTF-8"?>
<gpx
version="1.1"
creator="OpenTracks"
xmlns="http://www.topografix.com/GPX/1/1"
xmlns:topografix="http://www.topografix.com/GPX/Private/TopoGrafix/0/1"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:opentracks="http://opentracksapp.com/xmlschemas/v1"
xmlns:gpxtpx="http://www.garmin.com/xmlschemas/TrackPointExtension/v2"
xmlns:gpxtrkx="http://www.garmin.com/xmlschemas/TrackStatsExtension/v1"
xmlns:cluetrust="http://www.cluetrust.com/Schemas/"
xmlns:pwr="http://www.garmin.com/xmlschemas/PowerExtension/v1"
xsi:schemaLocation="http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd http://www.topografix.com/GPX/Private/TopoGrafix/0/1 http://www.topografix.com/GPX/Private/TopoGrafix/0/1/topografix.xsd http://www.garmin.com/xmlschemas/TrackPointExtension/v2 https://www8.garmin.com/xmlschemas/TrackPointExtensionv2.xsd http://www.garmin.com/xmlschemas/PowerExtension/v1 https://www8.garmin.com/xmlschemas/PowerExtensionv1.xsd http://www.garmin.com/xmlschemas/TrackStatsExtension/v1 http://www.cluetrust.com/Schemas http://www.cluetrust.com/Schemas/gpxdata10.xsd http://opentracksapp.com/xmlschemas/v1 http://opentracksapp.com/xmlschemas/OpenTracks_v1.xsd">
|]
wrap x = preamble ++ x ++ "</gpx>"
2024-10-30 14:25:54 +00:00
onepoint = wrap
2024-10-30 13:30:33 +00:00
"<trk> <trkseg> \n\
2024-10-29 21:22:49 +00:00
\<trkpt lat=\"51\" lon=\"-0.1\"> </trkpt> \n\
2024-10-30 13:30:33 +00:00
\</trkseg> </trk>"
2024-10-30 14:25:54 +00:00
onepointWithAttrs = wrap
2024-10-30 13:30:33 +00:00
"<trk> <trkseg> \n\
2024-10-29 21:22:49 +00:00
\<trkpt lat=\"51\" lon=\"-0.1\"> \n\
\ <ele>25.2</ele>\n\
\</trkpt> \n\
2024-10-30 13:30:33 +00:00
\</trkseg> </trk>"
2024-10-27 23:13:39 +00:00
2024-10-29 19:20:08 +00:00
test1 = TestCase $
2024-10-30 13:30:33 +00:00
case Track.parse (wrap "") of
2024-10-29 19:20:08 +00:00
Left err -> assertFailure (displayException err)
Right t -> assertEqual "empty track has no elements"
0 (Track.length t)
2024-10-28 23:35:36 +00:00
testMalformed = TestCase $
2024-10-30 13:30:33 +00:00
case Track.parse (wrap "<dgdsfg>>") of
Left err -> assertBool "syntax error" True
Right _ -> assertFailure "no error message parsing bad xml"
2024-10-28 23:35:36 +00:00
test2 = TestCase $
2024-10-29 21:22:49 +00:00
case Track.parse onepoint
2024-10-28 23:35:36 +00:00
of
Left err -> assertFailure (displayException err)
2024-10-29 19:21:25 +00:00
Right (p:ps) ->
assertEqual "matches lat/lon"
(Track.Pos 51.0 (-0.1))
2024-10-29 19:57:29 +00:00
(Track.pos p)
Right [] -> assertFailure "no points"
2024-10-27 20:19:58 +00:00
2024-10-29 21:22:49 +00:00
test3 = TestCase $
case Track.parse onepoint
of
Left err -> assertFailure (displayException err)
Right (p:ps) ->
assertEqual "matches elevation"
Nothing (Track.elevation p)
Right [] -> assertFailure "no points"
2024-10-29 21:22:49 +00:00
test4 = TestCase $
2024-10-30 13:30:33 +00:00
case Track.parse onepointWithAttrs
2024-10-29 21:22:49 +00:00
of
Left err -> assertFailure (displayException err)
Right (p:ps) ->
assertEqual "matches elevation"
(Just 25.2) (Track.elevation p)
Right [] -> assertFailure "no points"
2024-10-29 21:22:49 +00:00
2024-10-27 20:19:58 +00:00
tests :: Test
2024-10-28 23:35:36 +00:00
tests = TestList [
test1,
testMalformed,
test2,
test3,
test4
2024-10-28 23:35:36 +00:00
]
2024-10-27 20:19:58 +00:00
main :: IO ()
main = do
result <- runTestTT tests
if failures result > 0 then Exit.exitFailure else Exit.exitSuccess