2014-05-28 01:34:41 +02:00
|
|
|
package blueprint
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
type fooModule struct {
|
|
|
|
properties struct {
|
|
|
|
Foo string
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-06 18:10:40 +02:00
|
|
|
func newFooModule() (Module, []interface{}) {
|
2014-05-28 01:34:41 +02:00
|
|
|
m := &fooModule{}
|
2014-10-06 18:10:40 +02:00
|
|
|
return m, []interface{}{&m.properties}
|
2014-05-28 01:34:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (f *fooModule) GenerateBuildActions(ModuleContext) {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *fooModule) Foo() string {
|
|
|
|
return f.properties.Foo
|
|
|
|
}
|
|
|
|
|
|
|
|
type barModule struct {
|
|
|
|
properties struct {
|
|
|
|
Bar bool
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-06 18:10:40 +02:00
|
|
|
func newBarModule() (Module, []interface{}) {
|
2014-05-28 01:34:41 +02:00
|
|
|
m := &barModule{}
|
2014-10-06 18:10:40 +02:00
|
|
|
return m, []interface{}{&m.properties}
|
2014-05-28 01:34:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *barModule) GenerateBuildActions(ModuleContext) {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *barModule) Bar() bool {
|
|
|
|
return b.properties.Bar
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestContextParse(t *testing.T) {
|
|
|
|
ctx := NewContext()
|
2014-10-06 18:10:40 +02:00
|
|
|
ctx.RegisterModuleType("foo_module", newFooModule)
|
|
|
|
ctx.RegisterModuleType("bar_module", newBarModule)
|
2014-05-28 01:34:41 +02:00
|
|
|
|
|
|
|
r := bytes.NewBufferString(`
|
|
|
|
foo_module {
|
|
|
|
name: "MyFooModule",
|
|
|
|
deps: ["MyBarModule"],
|
|
|
|
}
|
|
|
|
|
|
|
|
bar_module {
|
|
|
|
name: "MyBarModule",
|
|
|
|
}
|
|
|
|
`)
|
|
|
|
|
|
|
|
_, errs := ctx.Parse(".", "Blueprint", r)
|
|
|
|
if len(errs) > 0 {
|
|
|
|
t.Errorf("unexpected parse errors:")
|
|
|
|
for _, err := range errs {
|
|
|
|
t.Errorf(" %s", err)
|
|
|
|
}
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
|
2014-10-06 18:10:40 +02:00
|
|
|
errs = ctx.resolveDependencies(nil)
|
2014-05-28 01:34:41 +02:00
|
|
|
if len(errs) > 0 {
|
|
|
|
t.Errorf("unexpected dep errors:")
|
|
|
|
for _, err := range errs {
|
|
|
|
t.Errorf(" %s", err)
|
|
|
|
}
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
|
|
|
|
errs = ctx.checkForDependencyCycles()
|
|
|
|
if len(errs) > 0 {
|
|
|
|
t.Errorf("unexpected dep cycle errors:")
|
|
|
|
for _, err := range errs {
|
|
|
|
t.Errorf(" %s", err)
|
|
|
|
}
|
|
|
|
t.FailNow()
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|