微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

ruby-on-rails – Rails – 使用功能测试测试JSON API

我只有一个简单的问题,但我找不到任何答案.

我的ruby on rails 3.2.2 appilcation有一个带有设计会话认证的JSON API.

我的问题是:我如何通过功能测试或集成测试来测试这个API – 有没有办法处理会话?

我没有前端,只有我可以做的API GET. POST.放.并使用JSON Body进行删除.

哪种测试方法自动化的最佳方法

示例创建新用户

发布www.exmaple.com/users

{
 "user":{
    "email" : "test@example.com","password " : "mypass"
  }
}

解决方法

功能测试很容易.在用户示例中,我将它们放在Rspec中的spec / controllers / users_controller_spec.rb中:
require 'spec_helper'

 describe UsersController do
   render_views # if you have RABL views

   before do
     @user_attributes = { email: "test@example.com",password: "mypass" }
   end

   describe "POST to create" do

     it "should change the number of users" do
        lambda do
          post :create,user: @user_attributes
        end.should change(User,:count).by(1)
     end

     it "should be successful" do
       post :create,user: @user_attributes
       response.should be_success
     end

     it "should set @user" do
       post :create,user: @user_attributes
       assigns(:user).email.should == @user_attributes[:email]
     end

     it "should return created user in json" do # depend on what you return in action
       post :create,user: @user_attributes
       body = JSON.parse(response.body)
       body["email"].should == @user_attributes[:email]
      end
  end

显然,你可以优化上面的规格,但这应该让你开始.干杯.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐