Added TODO comments to tests and other minor change

This commit is contained in:
David Allen 2024-08-07 13:15:09 -06:00
parent dd829cd10e
commit 890e3392ed
No known key found for this signature in database
GPG key ID: 717C593FF60A2ACC

View file

@ -30,21 +30,27 @@ func TestScanAndCollect(t *testing.T) {
} }
// do a collect on the emulator cluster to collect Redfish info // do a collect on the emulator cluster to collect Redfish info
magellan.CollectInventory(&results, &magellan.QueryParams{}) magellan.CollectInventory(&results, &magellan.CollectParams{})
} }
func TestCrawlCommand(t *testing.T) { func TestCrawlCommand(t *testing.T) {
// TODO: add test to check the crawl command's behavior
} }
func TestListCommand(t *testing.T) { func TestListCommand(t *testing.T) {
// TODO: add test to check the list command's output
} }
func TestUpdateCommand(t *testing.T) { func TestUpdateCommand(t *testing.T) {
// TODO: add test that does a Redfish simple update checking it success and
// failure points
} }
func TestGofishFunctions(t *testing.T) { func TestGofishFunctions(t *testing.T) {
// TODO: add test that checks certain gofish function output to make sure
// gofish's output isn't changing spontaneously and remains predictable
}
func TestGenerateHosts(t *testing.T) {
// TODO: add test to generate hosts using a collection of subnets/masks
} }