packages feed

couch-simple-0.0.1.0: test/Functionality/Explicit/Server.hs

{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE OverloadedStrings #-}

module Functionality.Explicit.Server where

import           Control.Applicative            ((<$>))
import           Data.Foldable                  (for_)
import           Data.Function                  (($), (.))
import           Data.List                      (length)
import           Data.UUID                      (toString)
import qualified Database.Couch.Explicit.Server as Server (activeTasks, allDbs,
                                                           meta, restart, stats,
                                                           uuids)
import           Database.Couch.Response        as Response (asUUID)
import           Database.Couch.Types           (Context)
import           Functionality.Util             (runTests, serverContext,
                                                 testAgainstSchema,
                                                 testAgainstSchemaAndValue)
import           Network.HTTP.Client            (Manager)
import           System.IO                      (IO)
import           Test.Tasty                     (TestTree, testGroup)
import           Test.Tasty.HUnit               ((@=?))

_main :: IO ()
_main = runTests tests


-- We specifically don't use makeTests here because we want no-databas-selected context
tests :: IO Manager -> TestTree
tests manager = testGroup "Tests of the server interface" $
  ($ serverContext manager) <$> [serverMeta, activeTasks, allDbs, stats, uuids]

-- Server-oriented functions
serverMeta :: IO Context -> TestTree
serverMeta = testAgainstSchema "Get server meta information" Server.meta "get--.json"

activeTasks :: IO Context -> TestTree
activeTasks = testAgainstSchema "Get list of active tasks" Server.activeTasks "get--_active_tasks.json"

allDbs :: IO Context -> TestTree
allDbs = testAgainstSchema "Retrieve list of all dbs (should be empty)" Server.allDbs "get--_all_dbs.json"

-- This fails when run alone, so it's commented out; I need to have it
-- able to run some other thing concurrently to provoke some actual
-- content
-- dbUpdates :: IO Context -> TestTree
-- dbUpdates getContext = testCaseSteps "Retrieve list of database updates" $ do
--   res <- getContext >>= Server.dbUpdates
--   checkRequestSuccess res
--   assertBool "should have an array of objects" $ allOf (_Right._1.each) (has _Object) res
--   assertBool "should have pids for all tasks" $ allOf (_Right._1.each) (has (key "pid")) res
--   checkEmptyCookieJar res

restart :: IO Context -> TestTree
restart = testAgainstSchema "Restart server" Server.restart "post--_restart.json"

stats :: IO Context -> TestTree
stats = testAgainstSchema "Retrieve statistics" Server.stats "get--_stats.json"

uuids :: IO Context -> TestTree
uuids = testAgainstSchemaAndValue "Retrieve UUIDs" (Server.uuids 1) "get--_stats.json" Response.asUUID $ \step val -> do
  step "Check length of list"
  length val @=? 1
  step "Check lengths of items"
  for_ val $ \u -> (length . toString) u @=? 36