-- | -- Module : Test.Amazonka.Query.List -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : provisional -- Portability : non-portable (GHC extensions) module Test.Amazonka.Data.Query (tests) where import Amazonka.Data import Amazonka.Prelude import Test.Tasty import Test.Tasty.HUnit (testCase, (@?=)) tests :: TestTree tests = testGroup "query" [ testGroup "fromString" [ testCase "key" $ parseQueryString "foo" @?= QList [ QPair "foo" (QValue Nothing) ], testCase "key=" $ parseQueryString "foo=" @?= QList [ QPair "foo" (QValue Nothing) ], testCase "key=value" $ parseQueryString "foo=bar" @?= QList [ QPair "foo" (QValue (Just "bar")) ], testCase "key&.." $ parseQueryString "foo&bar&baz" @?= QList [ QPair "foo" (QValue Nothing), QPair "bar" (QValue Nothing), QPair "baz" (QValue Nothing) ], testCase "key=value&.." $ parseQueryString "foo=1&bar=2&baz&qux=3" @?= QList [ QPair "foo" (QValue (Just "1")), QPair "bar" (QValue (Just "2")), QPair "baz" (QValue Nothing), QPair "qux" (QValue (Just "3")) ] ] ]