Sha256: b7dd1919118e81476978a0313660690fe48bc207a8999152a6672129b79dea9a

Contents?: true

Size: 1.46 KB

Versions: 5

Compression:

Stored size: 1.46 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" })

      body = check_job(app)

      app.id = body["app_id"]
      VCR.use_cassette("app_destroy") { app.destroy! }
    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
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
zendesk_api-1.3.7 spec/live/app_spec.rb
zendesk_api-1.3.5 spec/live/app_spec.rb
zendesk_api-1.3.4 spec/live/app_spec.rb
zendesk_api-1.3.2 spec/live/app_spec.rb
zendesk_api-1.3.1 spec/live/app_spec.rb