X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=src%2FTSN%2FXML%2FWeather.hs;h=26935cf83b84068a49001e4f700170ed348dbd2f;hb=7e1865e656ebbbba9566c7ace61176635fdeabe5;hp=2146c3f6f565597e166244bac8b970e7360b9590;hpb=e96fc68293b6ac51eb0e8a4fe9ac9afa515cca83;p=dead%2Fhtsn-import.git diff --git a/src/TSN/XML/Weather.hs b/src/TSN/XML/Weather.hs index 2146c3f..26935cf 100644 --- a/src/TSN/XML/Weather.hs +++ b/src/TSN/XML/Weather.hs @@ -13,6 +13,7 @@ module TSN.XML.Weather ( dtd, is_type1, pickle_message, + teams_are_normal, -- * Tests weather_tests, -- * WARNING: these are private but exported to silence warnings @@ -45,8 +46,14 @@ import Text.XML.HXT.Core ( PU, XmlTree, (/>), + (>>>), + addNav, + descendantAxis, + filterAxis, + followingSiblingAxis, hasName, readDocument, + remNav, runLA, runX, xp8Tuple, @@ -243,7 +250,7 @@ data WeatherDetailedWeatherListingItem = db_home_team :: String, db_weather_type :: Int, db_description :: String, - db_temp_adjust :: String, + db_temp_adjust :: Maybe String, db_temperature :: Int } @@ -259,7 +266,7 @@ data WeatherDetailedWeatherListingItemXml = xml_home_team :: String, xml_weather_type :: Int, xml_description :: String, - xml_temp_adjust :: String, + xml_temp_adjust :: Maybe String, xml_temperature :: Int } deriving (Eq, Show) @@ -420,6 +427,34 @@ is_type1 xmltree = elements = parse xmltree +-- | Some weatherxml documents even have the Home/Away teams in the +-- wrong order. We can't parse that! This next bit of voodoo detects +-- whether or not there are any \ elements that are +-- directly followed by sibling \ elements. This is the +-- opposite of the usual order. +-- +teams_are_normal :: XmlTree -> Bool +teams_are_normal xmltree = + case elements of + [] -> True + _ -> False + where + parse :: XmlTree -> [XmlTree] + parse = runLA $ hasName "/" + /> hasName "message" + /> hasName "Detailed_Weather" + /> hasName "DW_Listing" + /> hasName "Item" + >>> addNav + >>> descendantAxis + >>> filterAxis (hasName "HomeTeam") + >>> followingSiblingAxis + >>> remNav + >>> hasName "AwayTeam" + + elements = parse xmltree + + instance DbImport Message where dbmigrate _ = run_dbmigrate $ do @@ -449,6 +484,14 @@ instance DbImport Message where -- And finally, insert those DB listings. mapM_ insert_ db_listings + -- Now we do the detailed weather items. + case (xml_detailed_weather m) of + Nothing -> return () + Just dw -> do + let detailed_listings = xml_detailed_listings dw + let items = concatMap xml_items detailed_listings + mapM_ (insert_xml_fk_ weather_id) items + return ImportSucceeded @@ -513,7 +556,7 @@ pickle_item = (xpElem "HomeTeam" xpText) (xpElem "WeatherType" xpInt) (xpElem "Description" xpText) - (xpElem "TempAdjust" xpText) + (xpElem "TempAdjust" (xpOption xpText)) (xpElem "Temperature" xpInt) where from_tuple = uncurryN WeatherDetailedWeatherListingItemXml @@ -590,7 +633,8 @@ weather_tests = [ test_on_delete_cascade, test_pickle_of_unpickle_is_identity, test_unpickle_succeeds, - test_types_detected_correctly ] + test_types_detected_correctly, + test_normal_teams_detected_correctly ] -- | If we unpickle something and then pickle it, we should wind up @@ -658,6 +702,16 @@ test_on_delete_cascade = testGroup "cascading delete tests" actual @?= expected +-- | This is used in a few tests to extract an 'XmlTree' from a path. +-- +unsafe_get_xmltree :: String -> IO XmlTree +unsafe_get_xmltree path = + fmap head $ runX $ readDocument parse_opts path + + +-- | We want to make sure type1 documents are detected as type1, and +-- type2 documents detected as type2.. +-- test_types_detected_correctly :: TestTree test_types_detected_correctly = testGroup "weatherxml types detected correctly" $ @@ -671,11 +725,28 @@ test_types_detected_correctly = "second type detected correctly" False ] where - unsafe_get_xmltree :: String -> IO XmlTree - unsafe_get_xmltree path = - fmap head $ runX $ readDocument parse_opts path - check path desc expected = testCase desc $ do xmltree <- unsafe_get_xmltree path let actual = is_type1 xmltree actual @?= expected + + +-- | We want to make sure normal teams are detected as normal, and the +-- backwards ones are flagged as backwards. +-- +test_normal_teams_detected_correctly :: TestTree +test_normal_teams_detected_correctly = + testGroup "team order is detected correctly" [ + + check "normal teams are detected correctly" + "test/xml/weatherxml.xml" + True, + + check "backwards teams are detected correctly" + "test/xml/weatherxml-backwards-teams.xml" + False ] + where + check desc path expected = testCase desc $ do + xmltree <- unsafe_get_xmltree path + let actual = teams_are_normal xmltree + actual @?= expected