mirror of
https://github.com/SecurityBrewery/catalyst.git
synced 2025-12-06 07:12:46 +01:00
49 lines
768 B
Go
49 lines
768 B
Go
package ui_test
|
|
|
|
import (
|
|
"io/fs"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/SecurityBrewery/catalyst/ui"
|
|
)
|
|
|
|
func TestUI(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
tests := []struct {
|
|
name string
|
|
wantFiles []string
|
|
}{
|
|
{
|
|
name: "TestUI",
|
|
wantFiles: []string{
|
|
"index.html",
|
|
},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
got := ui.UI()
|
|
|
|
var gotFiles []string
|
|
|
|
require.NoError(t, fs.WalkDir(got, ".", func(path string, d fs.DirEntry, _ error) error {
|
|
if !d.IsDir() {
|
|
gotFiles = append(gotFiles, path)
|
|
}
|
|
|
|
return nil
|
|
}))
|
|
|
|
for _, wantFile := range tt.wantFiles {
|
|
assert.Contains(t, gotFiles, wantFile)
|
|
}
|
|
})
|
|
}
|
|
}
|