public async Task CurrencyPrompt_Validator() { TestAdapter adapter = new TestAdapter() .Use(new ConversationState <TestState>(new MemoryStorage())); await new TestFlow(adapter, async(context) => { var state = ConversationState <TestState> .Get(context); var numberPrompt = new CurrencyPrompt(Culture.English, async(ctx, result) => result.Value > 10); if (!state.InPrompt) { state.InPrompt = true; await numberPrompt.Prompt(context, "Gimme:"); } else { var result = await numberPrompt.Recognize(context); if (result == null) { context.Reply("null"); } else { context.Reply($"{result.Value} {result.Unit}"); } } }) .Send("hello") .AssertReply("Gimme:") .Send(" I would like $1.00") .AssertReply("null") .Send(" I would like $45.50") .AssertReply("45.5 Dollar") .StartTest(); }
public async Task CurrencyPrompt_Validator() { TestAdapter adapter = new TestAdapter() .Use(new ConversationState <TestState>(new MemoryStorage())); await new TestFlow(adapter, async(context) => { var state = ConversationState <TestState> .Get(context); var numberPrompt = new CurrencyPrompt(Culture.English, async(ctx, result) => { if (result.Value <= 10) { result.Status = PromptStatus.TooSmall; } }); if (!state.InPrompt) { state.InPrompt = true; await numberPrompt.Prompt(context, "Gimme:"); } else { var currencyPrompt = await numberPrompt.Recognize(context); if (currencyPrompt.Succeeded()) { await context.SendActivity($"{currencyPrompt.Value} {currencyPrompt.Unit}"); } else { await context.SendActivity(currencyPrompt.Status.ToString()); } } }) .Send("hello") .AssertReply("Gimme:") .Send(" I would like $1.00") .AssertReply(PromptStatus.TooSmall.ToString()) .Send(" I would like $45.50") .AssertReply("45.5 Dollar") .StartTest(); }
public async Task CurrencyPrompt_Test() { TestAdapter adapter = new TestAdapter() .Use(new ConversationState <TestState>(new MemoryStorage())); await new TestFlow(adapter, async(context) => { var state = ConversationState <TestState> .Get(context); var testPrompt = new CurrencyPrompt(Culture.English); if (!state.InPrompt) { state.InPrompt = true; await testPrompt.Prompt(context, "Gimme:"); } else { var result = await testPrompt.Recognize(context); if (result == null) { context.Reply("null"); } else { Assert.IsTrue(result.Value != float.NaN); Assert.IsNotNull(result.Text); Assert.IsNotNull(result.Unit); Assert.IsInstanceOfType(result.Value, typeof(float)); context.Reply($"{result.Value} {result.Unit}"); } } }) .Send("hello") .AssertReply("Gimme:") .Send("test test test") .AssertReply("null") .Send(" I would like $45.50") .AssertReply("45.5 Dollar") .StartTest(); }