Sha256: bc3c7ed6298bc10527672eeb8cfaf0f3c14c2ec3219ba7e83e046a6036d06a73

Contents?: true

Size: 1.39 KB

Versions: 2

Compression:

Stored size: 1.39 KB

Contents

require 'core/spec_helper'

describe ZendeskAPI::App do
  it "should work" do
    upload = VCR.use_cassette("app_upload_create") do
      ZendeskAPI::App::Upload.new(client, :id => "spec/fixtures/sample_app.zip").tap(&:save!)
    end

    attributes = { :upload_id => upload.id, :name => "My App", :short_description => "Testing" }

    app = ZendeskAPI::App.new(client, attributes)

    VCR.use_cassette("app_create") { app.save! }

    body = check_job(app)

    app.id = body["app_id"]
    app.author_name = "Mr. Sprinkles"
    app.author_email = "sprinkle@example.com"

    VCR.use_cassette("app_save") { app.save! }

    app.author_name.should == "Mr. Sprinkles"

    VCR.use_cassette("app_destroy") { app.destroy! }
  end

  it "should be able to handle the simplest creation api call" do
    VCR.use_cassette("app_simple_create") do
      app = ZendeskAPI::App.create!(client, { :name => "Testing App Creation", :upload => "spec/fixtures/sample_app.zip" })

      check_job(app)

      VCR.use_cassette("app_destroy") { app.destroy! }
    end
  end
end

def check_job(app)
  body = {}

  VCR.use_cassette("app_create_job_status") do
    until %w{failed completed}.include?(body["status"])
      response = client.connection.get(app.response.headers["Location"])
      body = response.body

      sleep(3)
    end
  end

  if body["status"] == "failed"
    fail "Could not create app: #{body.inspect}"
  end

  body
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
zendesk_api-1.3.0 spec/live/app_spec.rb
zendesk_api-1.3.0.rc3 spec/live/app_spec.rb