generated from TBD54566975/tbd-project-template
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
expose module context functionality through ftltest
- Loading branch information
Showing
2 changed files
with
73 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
package ftltest | ||
|
||
import ( | ||
"context" | ||
|
||
"github.com/TBD54566975/ftl/common/modulecontext" | ||
) | ||
|
||
type DBType int32 | ||
|
||
const ( | ||
DBTypePostgres = DBType(modulecontext.DBTypePostgres) | ||
) | ||
|
||
// ContextBuilder allows for building a context with configuration, secrets and DSN values set up for tests | ||
type ContextBuilder struct { | ||
builder modulecontext.Builder | ||
} | ||
|
||
func NewContextBuilder(moduleName string) *ContextBuilder { | ||
return &ContextBuilder{ | ||
builder: modulecontext.NewBuilder(moduleName), | ||
} | ||
} | ||
|
||
func (b ContextBuilder) AddGlobalConfig(name string, value any) ContextBuilder { | ||
return ContextBuilder{builder: b.builder.AddGlobalConfig(name, value)} | ||
} | ||
|
||
func (b ContextBuilder) AddConfig(name string, value any) ContextBuilder { | ||
return ContextBuilder{builder: b.builder.AddConfig(name, value)} | ||
} | ||
|
||
func (b ContextBuilder) AddGlobalSecret(name string, value any) ContextBuilder { | ||
return ContextBuilder{builder: b.builder.AddGlobalSecret(name, value)} | ||
} | ||
|
||
func (b ContextBuilder) AddSecret(name string, value any) ContextBuilder { | ||
return ContextBuilder{builder: b.builder.AddSecret(name, value)} | ||
} | ||
|
||
func (b ContextBuilder) AddDSN(name string, dbType DBType, dsn string) ContextBuilder { | ||
return ContextBuilder{builder: b.builder.AddDSN(name, modulecontext.DBType(dbType), dsn)} | ||
} | ||
|
||
func (b ContextBuilder) Build() (context.Context, error) { | ||
return b.BuildWithContext(Context()) | ||
} | ||
|
||
func (b ContextBuilder) BuildWithContext(ctx context.Context) (context.Context, error) { | ||
moduleCtx, err := b.builder.Build(ctx) | ||
if err != nil { | ||
return nil, err | ||
} | ||
return moduleCtx.ApplyToContext(ctx), nil | ||
} |