souplesse/tests/UnitTest.hs

174 lines
4.7 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-28 23:35:36 +00:00
import Control.Exception
2024-10-30 20:27:57 +00:00
import Data.Either
2024-10-31 16:18:40 +00:00
import Data.List as List
2024-10-31 17:13:50 +00:00
import Data.Time qualified
2024-10-30 21:03:11 +00:00
import Debug.Trace (trace, traceShow)
import System.Exit qualified as Exit
import Test.HUnit
import Text.RawString.QQ (r)
import Track qualified
2024-10-27 20:19:58 +00:00
2024-10-30 21:03:11 +00:00
preamble =
[r|
2024-10-30 13:30:33 +00:00
<?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">
|]
2024-10-30 21:03:11 +00:00
wrap x = preamble ++ x ++ "</gpx>"
2024-10-30 13:30:33 +00:00
2024-10-31 16:18:40 +00:00
wrapPoint x =
let trk = "<trk><trkseg>" ++ x ++ "</trkseg></trk>"
2024-10-31 17:13:50 +00:00
in wrap trk
2024-10-31 16:18:40 +00:00
2024-10-30 21:03:11 +00:00
onepoint =
wrap
[r|
2024-10-30 17:17:48 +00:00
<trk> <trkseg>
<trkpt lat="51" lon="-0.1">
<time>2024-10-23T08:34:59.779+01:00</time>
</trkpt>
2024-10-30 17:17:48 +00:00
</trkseg> </trk>
|]
2024-10-30 21:03:11 +00:00
onepointWithAttrs =
wrap
[r|
2024-10-30 17:17:48 +00:00
<trk>
<trkseg>
<trkpt lat="51" lon="-0.1">
<ele>25.2</ele>
2024-10-30 17:44:40 +00:00
<time>2024-10-23T08:34:59.779+01:00</time>
2024-10-30 17:17:48 +00:00
<extensions><gpxtpx:TrackPointExtension>
<gpxtpx:speed>2.4</gpxtpx:speed>
<gpxtpx:cad>128</gpxtpx:cad>
2024-10-31 13:00:01 +00:00
<gpxtpx:hr>160</gpxtpx:hr>
2024-10-30 17:17:48 +00:00
<pwr:PowerInWatts>55</pwr:PowerInWatts>
<opentracks:accuracy_horizontal>3.216</opentracks:accuracy_horizontal><opentracks:distance>10.675</opentracks:distance>
<cluetrust:distance>32.025</cluetrust:distance>
</gpxtpx:TrackPointExtension>
</extensions>
</trkpt>
</trkseg>
</trk>
|]
2024-10-27 23:13:39 +00:00
2024-10-30 21:03:11 +00:00
test1 =
TestCase $
either
(assertFailure . displayException)
2024-10-30 21:17:26 +00:00
( assertEqual
"empty track has no elements"
0
. Track.length
2024-10-30 21:03:11 +00:00
)
(Track.parse (wrap ""))
2024-10-28 23:35:36 +00:00
2024-10-30 21:03:11 +00:00
testMalformed =
TestCase $
let trk = Track.parse (wrap "<dgdsfg>>")
in assertBool "catches syntax error" (isLeft trk)
2024-10-31 16:18:40 +00:00
testMissingAttrs =
2024-10-31 17:13:50 +00:00
let els =
[ [r|
2024-10-31 16:18:40 +00:00
<trkpt lon="2" latsdf="51">
<time>2024-10-23T08:34:59.779+01:00</time>
</trkpt>
|],
2024-10-31 17:13:50 +00:00
[r|
2024-10-31 16:18:40 +00:00
<trkpt lon="dsfgsdfg" lat="51">
<time>2024-10-23T08:34:59.779+01:00</time>
</trkpt>
|],
2024-10-31 17:13:50 +00:00
[r|
2024-10-31 16:18:40 +00:00
<trkpt lon="2" lat="51">
<time>2024-10-23G87sdCfdfgsdfhg</time>
</trkpt>
|]
]
2024-10-31 17:13:50 +00:00
in TestCase $
assertBool
"failed to catch missing/malformed attribute"
2024-10-31 17:22:07 +00:00
(List.all (isLeft . Track.parse . wrapPoint) els)
2024-10-31 16:18:40 +00:00
2024-10-30 21:03:11 +00:00
test2 =
2024-10-31 17:13:50 +00:00
TestList
[ TestCase $
either
(assertFailure . displayException)
( \(p : _) ->
assertEqual
"matches lat/lon"
(Track.Pos 51.0 (-0.1) Nothing)
(Track.pos p)
)
(Track.parse onepoint),
TestCase $
either
(assertFailure . displayException)
( \(p : _) ->
assertEqual
"matches lat/lon"
(Track.Pos 51.0 (-0.1) (Just 25.2))
(Track.pos p)
)
(Track.parse onepointWithAttrs)
]
2024-10-27 20:19:58 +00:00
2024-10-30 21:03:11 +00:00
test3 =
TestCase $
either
(assertFailure . displayException)
( \(p : _) ->
assertEqual
"handles missing attributes"
(Nothing, Nothing)
(Track.power p, Track.cadence p)
2024-10-30 21:03:11 +00:00
)
(Track.parse onepoint)
2024-10-29 21:22:49 +00:00
2024-10-30 21:03:11 +00:00
test4 =
TestCase $
either
(assertFailure . displayException)
( \(p : _) ->
assertEqual
"handles attributes"
(Just 128, Just 55, Data.Time.UTCTime (toEnum 60606) 27299.779, Just 160)
(Track.cadence p, Track.power p, Track.time p, Track.heartRate p)
2024-10-30 21:03:11 +00:00
)
(Track.parse onepointWithAttrs)
2024-10-29 21:22:49 +00:00
2024-10-27 20:19:58 +00:00
tests :: Test
2024-10-30 21:03:11 +00:00
tests =
TestList
[ test1,
testMalformed,
2024-10-31 16:18:40 +00:00
testMissingAttrs,
2024-10-30 21:03:11 +00:00
test2,
test3,
test4
]
2024-10-27 20:19:58 +00:00
main :: IO ()
main = do
2024-10-30 21:03:11 +00:00
result <- runTestTT tests
if (failures result > 0) || (errors result > 0)
then Exit.exitFailure
else Exit.exitSuccess