Register types DMaaP mediator producer
[nonrtric.git] / dmaap-mediator-producer / internal / jobtypes / jobtypes_test.go
diff --git a/dmaap-mediator-producer/internal/jobtypes/jobtypes_test.go b/dmaap-mediator-producer/internal/jobtypes/jobtypes_test.go
new file mode 100644 (file)
index 0000000..5fdc378
--- /dev/null
@@ -0,0 +1,53 @@
+// -
+//   ========================LICENSE_START=================================
+//   O-RAN-SC
+//   %%
+//   Copyright (C) 2021: Nordix Foundation
+//   %%
+//   Licensed under the Apache License, Version 2.0 (the "License");
+//   you may not use this file except in compliance with the License.
+//   You may obtain a copy of the License at
+//
+//        http://www.apache.org/licenses/LICENSE-2.0
+//
+//   Unless required by applicable law or agreed to in writing, software
+//   distributed under the License is distributed on an "AS IS" BASIS,
+//   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+//   See the License for the specific language governing permissions and
+//   limitations under the License.
+//   ========================LICENSE_END===================================
+//
+
+package jobtypes
+
+import (
+       "os"
+       "path/filepath"
+       "testing"
+
+       "github.com/stretchr/testify/require"
+)
+
+const type1Schema = `{"title": "Type 1"}`
+
+func TestGetTypes_filesOkShouldReturnSliceOfTypes(t *testing.T) {
+       assertions := require.New(t)
+       typesDir, err := os.MkdirTemp("", "configs")
+       if err != nil {
+               t.Errorf("Unable to create temporary directory for types due to: %v", err)
+       }
+       defer os.RemoveAll(typesDir)
+       typeDir = typesDir
+       fname := filepath.Join(typesDir, "type1.json")
+       if err = os.WriteFile(fname, []byte(type1Schema), 0666); err != nil {
+               t.Errorf("Unable to create temporary files for types due to: %v", err)
+       }
+       types, err := GetTypes()
+       wantedType := Type{
+               Name:   "type1",
+               Schema: type1Schema,
+       }
+       wantedTypes := []*Type{&wantedType}
+       assertions.EqualValues(wantedTypes, types)
+       assertions.Nil(err)
+}