mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
44 lines
1.4 KiB
Ruby
44 lines
1.4 KiB
Ruby
# encoding: utf-8
|
||
|
||
require 'spec_helper'
|
||
require 'oneboxer'
|
||
require 'oneboxer/amazon_onebox'
|
||
|
||
describe Oneboxer::AmazonOnebox do
|
||
before(:each) do
|
||
@o = Oneboxer::AmazonOnebox.new("http://www.amazon.com/Ruby-Programming-Language-David-Flanagan/dp/0596516177")
|
||
FakeWeb.register_uri(:get, @o.translate_url, response: fixture_file('oneboxer/amazon.response'))
|
||
end
|
||
|
||
it "translates the URL" do
|
||
@o.translate_url.should == "http://www.amazon.com/gp/aw/d/0596516177"
|
||
end
|
||
|
||
it "generates the expected onebox for Amazon" do
|
||
@o.onebox.should match_html expected_amazon_result
|
||
end
|
||
|
||
private
|
||
def expected_amazon_result
|
||
<<EXPECTED
|
||
<div class='onebox-result'>
|
||
<div class='source'>
|
||
<div class='info'>
|
||
<a href='http://www.amazon.com/Ruby-Programming-Language-David-Flanagan/dp/0596516177' class="track-link" target="_blank">
|
||
<img class='favicon' src="/assets/favicons/amazon.png"> amazon.com
|
||
</a>
|
||
</div>
|
||
</div>
|
||
<div class='onebox-result-body'>
|
||
<img src="http://ecx.images-amazon.com/images/I/716dULgyHNL._SY180_.jpg" class="thumbnail">
|
||
<h3><a href="http://www.amazon.com/Ruby-Programming-Language-David-Flanagan/dp/0596516177" target="_blank">The Ruby Programming Language (Paperback)</a></h3>
|
||
<h4>David Flanagan, Yukihiro Matsumoto</h4>
|
||
|
||
The Ruby Programming Language is the authoritative guide to Ruby ...
|
||
|
||
</div>
|
||
<div class='clearfix'></div>
|
||
</div>
|
||
EXPECTED
|
||
end
|
||
end
|