Class TestData
A mechanism for providing dynamically updatable feature flag state in a simplified form to an SDK client in test scenarios.
Implements
Inherited Members
Namespace: LaunchDarkly .Sdk.Server.Integrations
Assembly: LaunchDarkly.ServerSdk.dll
Syntax
public sealed class TestData : IComponentConfigurer<IDataSource>
Remarks
Unlike File
The example code below uses a simple boolean flag, but more complex configurations are possible using
the methods of the Test
If the same Test
Examples
var td = TestData.DataSource();
td.Update(td.Flag("flag-key-1").BooleanFlag().VariationForAll(true));
var config = Configuration.Builder("sdk-key")
.DataSource(td)
.Build();
var client = new LdClient(config);
// flags can be updated at any time:
td.update(testData.flag("flag-key-2")
.VariationForUser("some-user-key", true)
.FallthroughVariation(false));
Methods
| Edit this page View SourceBuild(LdClientContext)
Called internally by the SDK to create an implementation instance. Applications should not need to call this method.
Declaration
public IDataSource Build(LdClientContext context)
Parameters
Type | Name | Description |
---|---|---|
Ld |
context | provides configuration properties and other components from the current SDK client instance |
Returns
Type | Description |
---|---|
IData |
a instance of the component type |
DataSource()
Creates a new instance of the test data source.
Declaration
public static TestData DataSource()
Returns
Type | Description |
---|---|
Test |
a new configurable test data source |
Remarks
See Test
Flag(string)
Creates or copies a Test
Declaration
public TestData.FlagBuilder Flag(string key)
Parameters
Type | Name | Description |
---|---|---|
string | key | the flag key |
Returns
Type | Description |
---|---|
Test |
a flag configuration builder |
Remarks
If this flag key has already been defined in this Test
Otherwise, it starts with a new default configuration in which the flag has true
and false
variations, is true
for all contexts when targeting is turned on
and false
otherwise, and currently has targeting turned on. You can change any
of those properties, and provide more complex behavior, using the
Test
Once you have set the desired configuration, pass the builder to
Update(Flag
See Also
| Edit this page View SourceUpdate(FlagBuilder)
Updates the test data with the specified flag configuration.
Declaration
public TestData Update(TestData.FlagBuilder flagBuilder)
Parameters
Type | Name | Description |
---|---|---|
Test |
flagBuilder | a flag configuration builder |
Returns
Remarks
This has the same effect as if a flag were added or modified on the LaunchDarkly dashboard.
It immediately propagates the flag change to any Ld
Any subsequent changes to this Test
See Also
| Edit this page View SourceUpdateStatus(DataSourceState, ErrorInfo?)
Simulates a change in the data source status.
Declaration
public TestData UpdateStatus(DataSourceState newState, DataSourceStatus.ErrorInfo? newError)
Parameters
Type | Name | Description |
---|---|---|
Data |
newState | one of the constants defined by Data |
Data |
newError | an optional Data |
Returns
Type | Description |
---|---|
Test |
Remarks
Use this if you want to test the behavior of application code that uses
Data