Sha256: cc55800b537d24c24a927eae5a630767349ee2d6b48dc7f97c04ac15b30aa176

Contents?: true

Size: 1.49 KB

Versions: 4

Compression:

Stored size: 1.49 KB

Contents

describe "ProMotion::TestWebScreen functionality" do
  extend WebStub::SpecHelpers

  before  { disable_network_access! }
  after   { enable_network_access! }

  tests PM::TestWebScreen

  # Override controller to properly instantiate
  def controller
    rotate_device to: :portrait, button: :bottom
    @webscreen ||= TestWebScreen.new(nav_bar: true)
    @webscreen.navigationController
  end

  after do
    @webscreen = nil
  end

  it "should have the proper html content" do
    file_name = "WebScreen.html"

    @webscreen.set_content(file_name)

    @loaded_file = File.read(File.join(NSBundle.mainBundle.resourcePath, file_name))
    wait_for_change @webscreen, 'load_finished' do
      @webscreen.html.delete("\n").should == @loaded_file.delete("\n")
    end
  end

  it "should allow you to navigate to a website" do
    stub_request(:get, "https://www.google.com/").
      to_return(body: %q{Google! <form action="/search">%}, content_type: "text/html")

    @webscreen.open_url(NSURL.URLWithString("https://www.google.com/"))
    wait_for_change @webscreen, 'load_finished' do
      @webscreen.html.include?('<form action="/search"').should == true
    end
  end

  it "should manipulate the webscreen contents with javascript" do
    @webscreen.set_content('<h1 id="cool">Something Cool</h1>')

    wait_for_change @webscreen, 'load_finished' do
      @webscreen.evaluate('document.getElementById("cool").innerHTML = "Changed"')
      @webscreen.html.should =~ /<h1 id="cool">Changed<\/h1>/
    end

  end

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ProMotion-1.1.2 spec/functional/func_web_screen_spec.rb
ProMotion-1.1.1 spec/functional/func_web_screen_spec.rb
ProMotion-1.1.0 spec/functional/func_web_screen_spec.rb
ProMotion-1.1.0.rc1 spec/functional/func_web_screen_spec.rb