Example #1
0
        public async Task PercentagePrompt_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 PercentagePrompt(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}");
                    }
                }
            })
            .Send("hello")
            .AssertReply("Gimme:")
            .Send(" I would like 5%")
            .AssertReply("null")
            .Send(" I would like 30%")
            .AssertReply("30")
            .StartTest();
        }
        public async Task PercentagePrompt_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 PercentagePrompt(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 percentResult = await numberPrompt.Recognize(context);
                    if (percentResult.Succeeded())
                    {
                        await context.SendActivity($"{percentResult.Value}");
                    }
                    else
                    {
                        await context.SendActivity(percentResult.Status.ToString());
                    }
                }
            })
            .Send("hello")
            .AssertReply("Gimme:")
            .Send(" I would like 5%")
            .AssertReply(PromptStatus.TooSmall.ToString())
            .Send(" I would like 30%")
            .AssertReply("30")
            .StartTest();
        }
        public async Task PercentagePrompt_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 PercentagePrompt(Culture.English);
                if (!state.InPrompt)
                {
                    state.InPrompt = true;
                    await testPrompt.Prompt(context, "Gimme:");
                }
                else
                {
                    var percentResult = await testPrompt.Recognize(context);
                    if (percentResult.Succeeded())
                    {
                        Assert.IsTrue(percentResult.Value != float.NaN);
                        Assert.IsNotNull(percentResult.Text);
                        Assert.IsInstanceOfType(percentResult.Value, typeof(float));
                        await context.SendActivity($"{percentResult.Value}");
                    }
                    else
                    {
                        await context.SendActivity(PromptStatus.NotRecognized.ToString());
                    }
                }
            })
            .Send("hello")
            .AssertReply("Gimme:")
            .Send("test test test")
            .AssertReply(PromptStatus.NotRecognized.ToString())
            .Send("give me 5")
            .AssertReply(PromptStatus.NotRecognized.ToString())
            .Send(" I would like forty five percent")
            .AssertReply("45")
            .StartTest();
        }