Skip to content
Snippets Groups Projects
Commit 0b08c8bf authored by Helga Velroyen's avatar Helga Velroyen
Browse files

Remove test of obsolete getNetworkUuid method


This will remove the tests for the getNetworkUuid method.
The method will be obsolete after the changes regarding
identification of networks by UUID and not name are merged
into master. Will send another patch for removing the
actual method.

Signed-off-by: default avatarHelga Velroyen <helgav@google.com>
Reviewed-by: default avatarMichael Hanselmann <hansmi@google.com>
parent 8920fa09
No related branches found
No related tags found
No related merge requests found
......@@ -62,22 +62,6 @@ prop_getGroupConnection_notFound group uuid =
let net_keys = (Map.keys . fromContainer . groupNetworks) group
in notElem uuid net_keys ==> isNothing (getGroupConnection uuid group)
-- | Check if getting the network's UUID from the config actually gets the
-- correct UUIDs.
prop_getNetworkUuid :: ConfigData -> Property
prop_getNetworkUuid cfg =
let nets = (Map.elems . fromContainer . configNetworks) cfg
in True ==? all
(\n -> fromJust (getNetworkUuid cfg ((fromNonEmpty . networkName) n))
== networkUuid n) nets
-- | Check if trying to get a UUID of a non-existing networks results in
-- 'Nothing'.
prop_getNetworkUuid_notFound :: ConfigData -> String -> Property
prop_getNetworkUuid_notFound cfg uuid =
let net_keys = (Map.keys . fromContainer . configNetworks) cfg
in notElem uuid net_keys ==> isNothing (getNetworkUuid cfg uuid)
-- | Checks whether actually connected instances are identified as such.
prop_instIsConnected :: ConfigData -> Property
prop_instIsConnected cfg =
......@@ -99,9 +83,7 @@ prop_instIsConnected_notFound cfg network_uuid =
not (instIsConnected cfg network_uuid inst)
testSuite "Query_Network"
[ 'prop_getNetworkUuid
, 'prop_getNetworkUuid_notFound
, 'prop_getGroupConnection
[ 'prop_getGroupConnection
, 'prop_getGroupConnection_notFound
, 'prop_instIsConnected
, 'prop_instIsConnected_notFound
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment