html safe json data for twitter/complete with view specs

This commit is contained in:
Ross Kaffenberger 2013-02-08 18:05:35 -05:00
parent 33757c201a
commit c959f8a67e
3 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,15 @@
require "spec_helper"
describe "facebook/complete.html.erb" do
it "renders data " do
assign(:data, {:username =>"username", :auth_provider=>"Facebook", :awaiting_activation=>true})
render
rendered_data = JSON.parse(rendered.match(/window.opener.Discourse.authenticationComplete\((.*)\)/)[1])
rendered_data["username"].should eq("username")
rendered_data["auth_provider"].should eq("Facebook")
rendered_data["awaiting_activation"].should eq(true)
end
end

View File

@ -0,0 +1,15 @@
require "spec_helper"
describe "twitter/complete.html.erb" do
it "renders data " do
assign(:data, {:username =>"username", :auth_provider=>"Twitter", :awaiting_activation=>true})
render
rendered_data = JSON.parse(rendered.match(/window.opener.Discourse.authenticationComplete\((.*)\)/)[1])
rendered_data["username"].should eq("username")
rendered_data["auth_provider"].should eq("Twitter")
rendered_data["awaiting_activation"].should eq(true)
end
end

View File

@ -0,0 +1,15 @@
require "spec_helper"
describe "user_open_ids/complete.html.erb" do
it "renders data " do
assign(:data, {:username =>"username", :auth_provider=>"OpenId", :awaiting_activation=>true})
render
rendered_data = JSON.parse(rendered.match(/window.opener.Discourse.authenticationComplete\((.*)\)/)[1])
rendered_data["username"].should eq("username")
rendered_data["auth_provider"].should eq("OpenId")
rendered_data["awaiting_activation"].should eq(true)
end
end