# -*- encoding : utf-8 -*- require File.expand_path('../../spec_helper', __FILE__) describe MajesticSeo::Api::ItemInfoResponse do #Example XML: # # # # # # 0|google.com|OK|Found|33536625553|15560001|33536625553|-1|1|5087871285|5000|2135470|363423|31636|147893369|22859|39850401|5833|43625720|6237|6983793|False| | |False| |0|0|0| | |http://www.google.nl # 1|yahoo.com|OK|Found|16814018765|8374570|16814018765|-1|1|3845667299|5000|1345597|266044|17992|24506182|10441|12766565|4284|5810404|1217|1338346|False| | |False| |0|0|0| | |http://pl.yahoo.com/?p=us # # # describe "successful ASCII response from MajesticSeo" do before(:each) do #We need to keep the XML on one line - JRuby goes bonanza otherwise @xml = '0|google.com|OK|Found|33536625553|15560001|33536625553|-1|1|5087871285|5000|2135470|363423|31636|147893369|22859|39850401|5833|43625720|6237|6983793|False| | |False| |0|0|0| | |http://www.google.nl1|yahoo.com|OK|Found|16814018765|8374570|16814018765|-1|1|3845667299|5000|1345597|266044|17992|24506182|10441|12766565|4284|5810404|1217|1338346|False| | |False| |0|0|0| | |http://pl.yahoo.com/?p=us' @parsed = ::Nokogiri::XML(@xml, nil, "utf-8") @response = MajesticSeo::Api::ItemInfoResponse.new(@parsed) @table = @response.tables["Results"] end it "should be a valid response" do @response.success.should == true end it "should not have an error message" do @response.error_message.should == "" end it "should have global variables set" do @response.global_variables["most_recent_back_link_date"].should == "2011-12-18" @response.global_variables["index_type"].should == "0" end it "should have one returned data table" do @response.tables.size.should == 1 end it "should have a data table with the name 'Results'" do @table.should_not be_nil end it "should have a data table with the name 'Results' containing 2 rows" do @table.row_count.should == 2 end it "should have results for google.com" do google_row = @response.items[0] google_row.url.should == "google.com" google_row.type.should == :root_domain google_row.result_code.should == "OK" google_row.success.should == true google_row.status.should == "Found" google_row.external_backlinks.should == 33536625553 end it "should have results for yahoo.com" do yahoo_row = @response.items[1] yahoo_row.url.should == "yahoo.com" yahoo_row.type.should == :root_domain yahoo_row.result_code.should == "OK" yahoo_row.success.should == true yahoo_row.status.should == "Found" yahoo_row.indexed_urls.should == 3845667299 end end #Example XML: # # # # # # 0|aftonbladet.se|OK|Found|54063780|128804|54063780|-1|1|5658886|5000|43589|23882|279|2396|35|179|120|496|4|13|False| | |False| |0|0|0| | Aftonbladet: Sveriges nyhetskälla och mötesplats |http://www.aftonbladet.se # # # describe "successful utf-8 response from MajesticSeo" do before(:each) do #We need to keep the XML on one line - JRuby goes bonanza otherwise @xml = '0|aftonbladet.se|OK|Found|54063780|128804|54063780|-1|1|5658886|5000|43589|23882|279|2396|35|179|120|496|4|13|False| | |False| |0|0|0| | Aftonbladet: Sveriges nyhetskälla och mötesplats |http://www.aftonbladet.se' @parsed = ::Nokogiri::XML(@xml, nil, "utf-8") @response = MajesticSeo::Api::ItemInfoResponse.new(@parsed) @table = @response.tables["Results"] end it "should be a valid response" do @response.success.should == true end it "should not have an error message" do @response.error_message.should == "" end it "should have global variables set" do @response.global_variables["most_recent_back_link_date"].should == "2011-12-18" @response.global_variables["index_type"].should == "0" end it "should have one returned data table" do @response.tables.size.should == 1 end it "should have a data table with the name 'Results'" do @table.should_not be_nil end it "should have a data table with the name 'Results' containing 2 rows" do @table.row_count.should == 1 end it "should have results for aftonbladet.se" do row = @response.items[0] row.url.should == "aftonbladet.se" row.title.should == "Aftonbladet: Sveriges nyhetskälla och mötesplats" row.type.should == :root_domain row.result_code.should == "OK" row.success.should == true row.status.should == "Found" row.external_backlinks.should == 54063780 row.referring_domains.should == 128804 end end end