Sha256: e0c514599be374c5bf54ce3753de0614229d56fb068efe5e685c7ab159e97fd4

Contents?: true

Size: 1.33 KB

Versions: 3

Compression:

Stored size: 1.33 KB

Contents

require "spec_helper"

describe Vkontakte::Api::Photos do
  it "should be valid" do
    Vkontakte::Api::Photos.should be_a(Module)
  end

  context "params" do
    before(:each) do
      @token = '3a3d250e705051b03ed479343c3ec2833783eea3eea29860182716ed1d40319'
      @iframe = Vkontakte::App::Iframe.new
      @iframe.auth = {'access_token' => @token}
    end

    it "should be call getAlbums method" do
      response = '{"response":[{"aid":"17071606","thumb_id":"98054577","owner_id":"6492","title":"",
"description":"","created":"1204576880","updated":"1229532461", "size":"3","privacy":"0"}]}'

      FakeWeb.register_uri(:get,
        "https://api.vk.com/method/photos.getAlbums?v=5.24&access_token=#{@token}",
        :body => response)

      @iframe.photos.getAlbums.should == [{"aid" => "17071606","thumb_id" => "98054577","owner_id" => "6492","title" => "", "description" => "","created" => "1204576880","updated" => "1229532461", "size" => "3","privacy" => "0"}]
    end

    it "should be call getAllComments method" do
      response = '{"response": { "items": [1,2,3] }}'

      FakeWeb.register_uri(:get,
        "https://api.vk.com/method/photos.getAllComments?v=5.24&access_token=#{@token}&owner_id=2592709",
        :body => response)

      @iframe.photos.getAllComments(:owner_id => 2592709)["items"].size.should == 3
    end

  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
vkontakte-0.0.9 spec/api/photos_spec.rb
vkontakte-0.0.8 spec/api/photos_spec.rb
vkontakte-0.0.7 spec/api/photos_spec.rb