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

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

相关文章

validates:conclusion,:presence=>true,:inclusion=>{...
一、redis集群搭建redis3.0以前,提供了Sentinel工具来监控各...
分享一下我老师大神的人工智能教程。零基础!通俗易懂!风趣...
上一篇博文 ruby传参之引用类型 里边定义了一个方法名 mo...
一编程与编程语言 什么是编程语言? 能够被计算机所识别的表...
Ruby类和对象Ruby是一种完美的面向对象编程语言。面向对象编...