Skip to content
This repository is currently being migrated. It's locked while the migration is in progress.

storageos/pre-test

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PRE-Test

StorageOS can generate a diagnostic bundle as part of support engagements with customers. As part of our acceptance tests we want to validate that the diagnostic bundle contains all the files we expect, and no files that we did not expect. This scenario asks you to complete a function that validates a []string of file paths passed by an unpackDiagnosticBundle function. The file paths are generated using filepath.Walk so the ordering of files is lexical.

Finish the function verifyBundle() that validates that a []string of files contains all the expected files, and no unexpected files, for the provided node IDs. The code you write should be called by verifyBundle() and pass the TestVerifyBundle test.

For extra points return what files are missing/unexpected.

The expected files include cluster specific and node specific files. Each node in the cluster is expected to return all of the node specific files.

# Cluster specific files
	"/tmp/diagBundle-76461881/HttpClientFile095427323/2021-03-04T11-10-45.769125854Z/node_configs",
	"/tmp/diagBundle-76461881/HttpClientFile095427323/2021-03-04T11-10-45.769125854Z/volume_configs",
	"/tmp/diagBundle-71832245/HttpClientFile803827980/2021-03-04T11-10-45.659243121Z/volume_configs",
	"/tmp/diagBundle-76461881/HttpClientFile095427323/2021-03-04T11-10-45.769125854Z/cluster_config",
	"/tmp/diagBundle-76461881/HttpClientFile095427323/2021-03-04T11-10-45.769125854Z/namespace_partitions",	
	
# Node specific files for node: 83662212-59d5-44b6-a381-65bc7f4f0e7d
	"/tmp/diagBundle-76461881/HttpClientFile095427323/2021-03-04T11-10-45.769125854Z/node_83662212-59d5-44b6-a381-65bc7f4f0e7d",
	"/tmp/diagBundle-76461881/HttpClientFile095427323/2021-03-04T11-10-45.769125854Z/node_83662212-59d5-44b6-a381-65bc7f4f0e7d/attached_volumes",
	"/tmp/diagBundle-76461881/HttpClientFile095427323/2021-03-04T11-10-45.769125854Z/node_83662212-59d5-44b6-a381-65bc7f4f0e7d/cached_licence",
	...

# Node specific files for node: 43287213-54xf-57s5-bnd5-sd5f45saf2351
	"/tmp/diagBundle-76461881/HttpClientFile095427323/2021-03-04T11-10-45.769125854Z/node_43287213-54xf-57s5-bnd5-sd5f45saf2351",
	"/tmp/diagBundle-76461881/HttpClientFile095427323/2021-03-04T11-10-45.769125854Z/node_43287213-54xf-57s5-bnd5-sd5f45saf2351/attached_volumes",
	"/tmp/diagBundle-76461881/HttpClientFile095427323/2021-03-04T11-10-45.769125854Z/node_43287213-54xf-57s5-bnd5-sd5f45saf2351/cached_licence",

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages