Package org.speakright.core.flows

Examples of org.speakright.core.flows.PromptFlow$PromptFlowRenderer


  static SROTransferCall m_sroXfer;
  public static SRApp createApp(boolean addConfirmer)
  {
        SRApp flow = new SRApp();

        flow.add(new PromptFlow("aaa"));
        m_sroXfer = new SROTransferCall("333");
    flow.add(m_sroXfer);

    flow.add(new PromptFlow("bbb"));
        return flow;
  }
View Full Code Here


    chkXmlFile(run, "ref_empty.vxml");
  }

  public void testHello()
  {
    PromptFlow flow = new PromptFlow("hello");
 
    BaseTest base = new BaseTest();
    SRInstance run = base.StartIt(flow);
   
    chkXmlFile(run, "ref_hello.vxml");
View Full Code Here

    chkXmlFile(run, "ref_yousaid.vxml");
  }
 
  public void testAudioUrls()
  {
    PromptFlow flow = new PromptFlow("audio:abc.wav");
    flow.addPrompt("audio:special/def.wav");
    flow.addPrompt("audio:http://localhost/stock/ghi.wav");
 
    BaseTest base = new BaseTest();
    SRInstance run = base.StartIt(flow);
   
    chkXmlFile(run, "ref_audio.vxml");
View Full Code Here

   
    chkXmlFile(run, "ref_audio.vxml");
  }
  public void testAudioUrlsBaseDir()
  {
    PromptFlow flow = new PromptFlow("audio:abc.wav");
    flow.addPrompt("audio:special/def.wav");
    flow.addPrompt("audio:http://localhost/stock/ghi.wav");
 
    BaseTest base = new BaseTest();
    SRInstance run = base.StartIt(flow, "", "http://somecompany.com/app1");
   
    chkXmlFile(run, "ref_audio2.vxml");
View Full Code Here

   
    chkXmlFile(run, "ref_audio2.vxml");
  }
  public void testAudioItem()
  {
    PromptFlow flow = new PromptFlow("back from the question. {audio:audio/Welcome.WAV}");
 
    BaseTest base = new BaseTest();
    SRInstance run = base.StartIt(flow, "", "http://somecompany.com/app1");
   
    chkXmlFile(run, "ref_audio3.vxml");
View Full Code Here

   
    chkXmlFile(run, "ref_audio3.vxml");
  }
  public void testNoBargeIn()
  {
    PromptFlow flow = new PromptFlow("hello");
    flow.setBargeIn(false);
 
    BaseTest base = new BaseTest();
    SRInstance run = base.StartIt(flow);
   
    chkXmlFile(run, "ref_nobargein.vxml");
View Full Code Here

  public void testBadId()
  {
    //and try a prompt with a bad id
//    doPrompt("id:a25", "", false);

    PromptFlow flow = new PromptFlow("id:a25");
 
    BaseTest base = new BaseTest();
    SRInstance run = base.StartIt(flow);
   
    chkXmlFile(run, "ref_badid.vxml");
View Full Code Here

    chkXmlFile(run, "ref_badid.vxml");
  }
  public void testPromptGroupId()
  {
    //this prompt exists in app_prompts.xml
    PromptFlow flow = new PromptFlow("id:group1.a10");
   
    BaseTest base = new BaseTest();
    base.log("..GROUPID..");
   
//    SRInstance run = base.StartIt(flow);
View Full Code Here

    chkXmlFile(run, "ref_groupid.vxml");   
  }
  public void testPromptGroupIdUseDefault()
  {
    //this prompt doesn't exists in app_prompts.xml so prompt a12 from prompts.xml should be found
    PromptFlow flow = new PromptFlow("id:a12");
   
    BaseTest base = new BaseTest();
    base.log("..GROUPID..");
   
//    SRInstance run = base.StartIt(flow);
View Full Code Here

   
    chkXmlFile(run, "ref_groupid.vxml");   
  }
  public void testTripleItem()
  {
    PromptFlow flow = new PromptFlow("Earth is home. {..}{For now!}");

    BaseTest base = new BaseTest();
    SRInstance run = base.StartIt(flow);

    chkXmlFile(run, "ref_tripleitem.vxml");
View Full Code Here

TOP

Related Classes of org.speakright.core.flows.PromptFlow$PromptFlowRenderer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.