You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@couchdb.apache.org by "Paul Joseph Davis (JIRA)" <ji...@apache.org> on 2010/10/09 03:19:00 UTC

[jira] Updated: (COUCHDB-813) No View Server test for error in map function

     [ https://issues.apache.org/jira/browse/COUCHDB-813?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Paul Joseph Davis updated COUCHDB-813:
--------------------------------------

    Skill Level: New Contributors Level (Easy)

> No View Server test for error in map function
> ---------------------------------------------
>
>                 Key: COUCHDB-813
>                 URL: https://issues.apache.org/jira/browse/COUCHDB-813
>             Project: CouchDB
>          Issue Type: Bug
>          Components: Test Suite
>    Affects Versions: 0.11
>            Reporter: Stephen Prater
>            Priority: Minor
>             Fix For: 0.11.3
>
>
> There is no r-spec test for how a view server should behave if an error is thrown in the map function.  The JS server returns empty if map terminates abnormally so, I've codified that behavior in an rspec test.
>   it "should return empty if map terminates abnormally" do
>     @qs.reset!
>     @qs.run(["add_fun", functions["error-in-map"]]).should == true
>     @qs.run(["add_fun", functions["emit-once"]]).should == true
>     rows = @qs.run(["map_doc", {:a => "b"}])
>     rows[0].should == []
>     rows[1].should == [["baz","b"]]
>   end

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.