mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
65 lines
1.8 KiB
Go
65 lines
1.8 KiB
Go
package analysis
|
|
|
|
import "testing"
|
|
|
|
const (
|
|
widgetFile = "fixtures/widget-crud.yml"
|
|
fooFile = "fixtures/foo-crud.yml"
|
|
barFile = "fixtures/bar-crud.yml"
|
|
noPathsFile = "fixtures/no-paths.yml"
|
|
emptyPathsFile = "fixtures/empty-paths.json"
|
|
)
|
|
|
|
func TestMixin(t *testing.T) {
|
|
|
|
primary, err := loadSpec(widgetFile)
|
|
if err != nil {
|
|
t.Fatalf("Could not load '%v': %v\n", widgetFile, err)
|
|
}
|
|
mixin1, err := loadSpec(fooFile)
|
|
if err != nil {
|
|
t.Fatalf("Could not load '%v': %v\n", fooFile, err)
|
|
}
|
|
mixin2, err := loadSpec(barFile)
|
|
if err != nil {
|
|
t.Fatalf("Could not load '%v': %v\n", barFile, err)
|
|
}
|
|
mixin3, err := loadSpec(noPathsFile)
|
|
if err != nil {
|
|
t.Fatalf("Could not load '%v': %v\n", noPathsFile, err)
|
|
}
|
|
|
|
collisions := Mixin(primary, mixin1, mixin2, mixin3)
|
|
if len(collisions) != 16 {
|
|
t.Errorf("TestMixin: Expected 16 collisions, got %v\n%v", len(collisions), collisions)
|
|
}
|
|
|
|
if len(primary.Paths.Paths) != 7 {
|
|
t.Errorf("TestMixin: Expected 7 paths in merged, got %v\n", len(primary.Paths.Paths))
|
|
}
|
|
|
|
if len(primary.Definitions) != 8 {
|
|
t.Errorf("TestMixin: Expected 8 definitions in merged, got %v\n", len(primary.Definitions))
|
|
}
|
|
|
|
if len(primary.Parameters) != 4 {
|
|
t.Errorf("TestMixin: Expected 4 top level parameters in merged, got %v\n", len(primary.Parameters))
|
|
}
|
|
|
|
if len(primary.Responses) != 2 {
|
|
t.Errorf("TestMixin: Expected 2 top level responses in merged, got %v\n", len(primary.Responses))
|
|
}
|
|
|
|
// test that adding paths to a primary with no paths works (was NPE)
|
|
emptyPaths, err := loadSpec(emptyPathsFile)
|
|
if err != nil {
|
|
t.Fatalf("Could not load '%v': %v\n", emptyPathsFile, err)
|
|
}
|
|
|
|
collisions = Mixin(emptyPaths, primary)
|
|
if len(collisions) != 0 {
|
|
t.Errorf("TestMixin: Expected 0 collisions, got %v\n%v", len(collisions), collisions)
|
|
}
|
|
|
|
}
|