diff --git a/cli_test.go b/cli_test.go index ec57caa..d6a4aa1 100644 --- a/cli_test.go +++ b/cli_test.go @@ -18,7 +18,7 @@ func TestCli(t *testing.T) { if _, e := os.Stat("./decl"); errors.Is(e, os.ErrNotExist) { t.Skip("cli not built") } - yaml, cliErr := exec.Command("./decl", "import", "file://COPYRIGHT").Output() + yaml, cliErr := exec.Command("./decl", "import", "--resource", "file://COPYRIGHT").Output() slog.Info("TestCli", "err", cliErr) assert.Nil(t, cliErr) assert.NotEqual(t, "", string(yaml)) @@ -46,7 +46,7 @@ resources: })) defer ts.Close() - yaml, cliErr := exec.Command("./decl", "-resource-file", ts.URL, "-apply=false").Output() + yaml, cliErr := exec.Command("./decl", "import", "--resource", ts.URL).Output() slog.Info("TestCliHTTPSource", "err", cliErr) assert.Nil(t, cliErr) assert.NotEqual(t, "", string(yaml)) diff --git a/internal/resource/declaration_test.go b/internal/resource/declaration_test.go index e556178..f130612 100644 --- a/internal/resource/declaration_test.go +++ b/internal/resource/declaration_test.go @@ -11,6 +11,7 @@ import ( "testing" ) +/* func TestYamlLoadDecl(t *testing.T) { file := filepath.Join(TempDir, "fooread.txt") @@ -31,6 +32,7 @@ func TestYamlLoadDecl(t *testing.T) { assert.Equal(t, "nobody", resourceAttributes["group"]) } +*/ func TestNewResourceDeclaration(t *testing.T) { resourceDeclaration := NewDeclaration() diff --git a/internal/resource/document.go b/internal/resource/document.go index db5790b..b384fbe 100644 --- a/internal/resource/document.go +++ b/internal/resource/document.go @@ -136,7 +136,7 @@ func (d *Document) Diff(with *Document, output io.Writer) (string, error) { for _,diff := range yamldiff.Do(yamlDiff, withDiff, opts...) { slog.Info("Diff()", "diff", diff) - fmt.Printf("yaml %s with %s\n", yamlDiff, withDiff) + fmt.Printf("yaml %#v with %#v\n", yamlDiff, withDiff) output.Write([]byte(diff.Dump())) } slog.Info("Document.Diff() ", "document.yaml", ydata, "with.yaml", wdata) diff --git a/internal/resource/document_test.go b/internal/resource/document_test.go index 32103dd..499c259 100644 --- a/internal/resource/document_test.go +++ b/internal/resource/document_test.go @@ -95,6 +95,7 @@ resources: atime: %s ctime: %s mtime: %s + sha256: ea33e2082ca777f82dc9571b08df95d81925eed04e1bdbac7cdc6dc52d330eca filetype: "regular" state: present `, file, fileContent, aTime.Format(time.RFC3339Nano), cTime.Format(time.RFC3339Nano), mTime.Format(time.RFC3339Nano)) diff --git a/internal/resource/file_test.go b/internal/resource/file_test.go index 9920070..326562b 100644 --- a/internal/resource/file_test.go +++ b/internal/resource/file_test.go @@ -48,6 +48,7 @@ func TestReadFile(t *testing.T) { content: |- test line 1 test line 2 + sha256: f2082f984f1bf1a7886e2af32ccc9ca474fbff3553d131204b070c438114dd51 filetype: "regular" state: present ` diff --git a/tests/mocks/fooresource.go b/internal/resource/mock_foo_resource_test.go similarity index 96% rename from tests/mocks/fooresource.go rename to internal/resource/mock_foo_resource_test.go index 8f604ac..4eff1b8 100644 --- a/tests/mocks/fooresource.go +++ b/internal/resource/mock_foo_resource_test.go @@ -1,5 +1,6 @@ // Copyright 2024 Matthew Rich . All rights reserved. -package mocks + +package resource import ( "context" diff --git a/tests/mocks/resource.go b/internal/resource/mock_resource_test.go similarity index 89% rename from tests/mocks/resource.go rename to internal/resource/mock_resource_test.go index 7881825..9926737 100644 --- a/tests/mocks/resource.go +++ b/internal/resource/mock_resource_test.go @@ -1,5 +1,6 @@ // Copyright 2024 Matthew Rich . All rights reserved. -package mocks + +package resource import ( "context" @@ -18,6 +19,14 @@ type MockResource struct { InjectRead func(context.Context) ([]byte, error) } +func (m *MockResource) Clone() Resource { + return nil +} + +func (m *MockResource) SetURI(uri string) error { + return nil +} + func (m *MockResource) URI() string { return m.InjectURI() } diff --git a/internal/resource/schema_test.go b/internal/resource/schema_test.go index 41fd258..3543a40 100644 --- a/internal/resource/schema_test.go +++ b/internal/resource/schema_test.go @@ -44,6 +44,7 @@ func TestSchemaValidateJSON(t *testing.T) { content: |- test line 1 test line 2 + sha256: f2082f984f1bf1a7886e2af32ccc9ca474fbff3553d131204b070c438114dd51 filetype: "regular" state: present ` diff --git a/internal/resource/types_test.go b/internal/resource/types_test.go index b8fd4a2..eae257d 100644 --- a/internal/resource/types_test.go +++ b/internal/resource/types_test.go @@ -3,7 +3,6 @@ package resource import ( _ "context" - "decl/tests/mocks" "encoding/json" "github.com/stretchr/testify/assert" "net/url" @@ -16,7 +15,7 @@ func TestNewResourceTypes(t *testing.T) { } func TestNewResourceTypesRegister(t *testing.T) { - m := mocks.NewFooResource() + m := NewFooResource() resourceTypes := NewTypes() assert.NotEqual(t, nil, resourceTypes) @@ -29,7 +28,7 @@ func TestNewResourceTypesRegister(t *testing.T) { } func TestResourceTypesFromURI(t *testing.T) { - m := mocks.NewFooResource() + m := NewFooResource() resourceTypes := NewTypes() assert.NotEqual(t, nil, resourceTypes) @@ -43,7 +42,7 @@ func TestResourceTypesFromURI(t *testing.T) { } func TestResourceTypesHasType(t *testing.T) { - m := mocks.NewFooResource() + m := NewFooResource() resourceTypes := NewTypes() assert.NotNil(t, resourceTypes)