require 'spec_helper' describe RubySpeech::NLSML do let :example_document do ''' I want to go to Pittsburgh Pittsburgh I want to go to Stockholm Stockholm ''' end describe 'drawing a document' do let :expected_document do Nokogiri::XML(example_document, nil, nil, Nokogiri::XML::ParseOptions::NOBLANKS).to_xml end it "should allow building a document" do document = RubySpeech::NLSML.draw(grammar: 'http://flight') do interpretation confidence: 0.6 do input "I want to go to Pittsburgh", mode: :speech instance do airline do to_city 'Pittsburgh' end end end interpretation confidence: 0.4 do input "I want to go to Stockholm" instance do airline do to_city "Stockholm" end end end end document.to_xml.should == expected_document end it "should return a structured/parsed document" do document = RubySpeech::NLSML.draw(grammar: 'http://flight') do interpretation confidence: 0.6 do input "I want to go to Pittsburgh", mode: :speech instance do airline do to_city 'Pittsburgh' end end end end document.should be_match end context "with a string instance" do let :example_document do ''' I want to go to Pittsburgh I want to go to Pittsburgh ''' end it "should allow building a document" do document = RubySpeech::NLSML.draw(grammar: 'http://flight') do interpretation confidence: 0.6 do input "I want to go to Pittsburgh", mode: :speech instance "I want to go to Pittsburgh" end end document.to_xml.should == expected_document end end end describe "parsing a document" do subject do RubySpeech.parse example_document end let(:empty_result) { '' } its(:grammar) { should == 'http://flight' } it { should be_match } let(:expected_best_interpretation) do { confidence: 0.6, input: { mode: :speech, content: 'I want to go to Pittsburgh' }, instance: { airline: { to_city: 'Pittsburgh' } }, instances: [{ airline: { to_city: 'Pittsburgh' } }] } end let(:expected_interpretations) do [ expected_best_interpretation, { confidence: 0.4, input: { content: 'I want to go to Stockholm' }, instance: { airline: { to_city: 'Stockholm' } }, instances: [{ airline: { to_city: 'Stockholm' } }] } ] end its(:interpretations) { should == expected_interpretations } its(:best_interpretation) { should == expected_best_interpretation } it "should be equal if the XML is the same" do subject.should be == RubySpeech.parse(example_document) end it "should not be equal if the XML is different" do subject.should_not be == RubySpeech.parse(empty_result) end context "when the XML is already parsed and is not the root of a document" do let :example_document do ''' I want to go to Pittsburgh Pittsburgh I want to go to Stockholm Stockholm ''' end let(:node) { Nokogiri::XML(example_document).at_xpath('//mrcp:result', mrcp: "http://www.ietf.org/xml/ns/mrcpv2") } subject do RubySpeech::NLSML::Document.new node end its(:grammar) { should == 'http://flight' } end context "with an interpretation that has no instance" do let :example_document do ''' I want to go to Pittsburgh I want to go to Stockholm ''' end let(:expected_best_interpretation) do { confidence: 0.6, input: { mode: :speech, content: 'I want to go to Pittsburgh' }, instance: nil, instances: [] } end let(:expected_interpretations) do [ expected_best_interpretation, { confidence: 0.4, input: { content: 'I want to go to Stockholm' }, instance: nil, instances: [] } ] end its(:interpretations) { should == expected_interpretations } its(:best_interpretation) { should == expected_best_interpretation } end context "with an interpretation that has no input" do let :example_document do ''' Pittsburgh ''' end let(:expected_best_interpretation) do { confidence: 0.6, input: nil, instance: { airline: { to_city: 'Pittsburgh' } }, instances: [{ airline: { to_city: 'Pittsburgh' } }] } end let(:expected_interpretations) do [expected_best_interpretation] end its(:interpretations) { should == expected_interpretations } its(:best_interpretation) { should == expected_best_interpretation } end context "with a string instance" do let :example_document do ''' I want to go to Pittsburgh I want to go to Pittsburgh ''' end let(:expected_best_interpretation) do { confidence: 0.6, input: { mode: :speech, content: 'I want to go to Pittsburgh' }, instance: 'I want to go to Pittsburgh', instances: ['I want to go to Pittsburgh'] } end let(:expected_interpretations) do [expected_best_interpretation] end its(:interpretations) { should == expected_interpretations } its(:best_interpretation) { should == expected_best_interpretation } end context "without any interpretations" do subject do RubySpeech.parse empty_result end it { should_not be_match } end context "with interpretations out of confidence order" do let :example_document do ''' I want to go to Stockholm Stockholm I want to go to Pittsburgh Pittsburgh ''' end its(:interpretations) { should == expected_interpretations } its(:best_interpretation) { should == expected_best_interpretation } end context "with multiple instances for a single interpretation" do let :example_document do ''' I want to go to Boston Boston, MA Boston, UK ''' end let(:expected_interpretation) do { confidence: 1.0, input: { content: 'I want to go to Boston', mode: :speech }, instance: { airline: { to_city: 'Boston, MA' } }, instances: [ { airline: { to_city: 'Boston, MA' } }, { airline: { to_city: 'Boston, UK' } } ] } end its(:interpretations) { should == [expected_interpretation] } its(:best_interpretation) { should == expected_interpretation } end context "with no namespace" do let :example_document do ''' I want to go to Pittsburgh Pittsburgh I want to go to Stockholm Stockholm ''' end its(:interpretations) { should == expected_interpretations } its(:best_interpretation) { should == expected_best_interpretation } end context "with a single interpretation with a nomatch input" do let :example_document do ''' ''' end it { should_not be_match } end context "with multiple interpretations where one is a nomatch input" do let :example_document do ''' I want to go to Pittsburgh Pittsburgh ''' end it { should be_match } end context "with a single interpretation with a noinput" do let :example_document do ''' ''' end it { should_not be_match } it { should be_noinput } end end end