require "test_helper"
class ClientApplicationTest < ActiveSupport::TestCase
- fixtures :client_applications
-
def test_url_valid
ok = ["http://example.com/test", "https://example.com/test"]
- bad = ["", "ftp://example.com/test", "myapp://somewhere"]
+ bad = ["", "ftp://example.com/test", "myapp://somewhere", "http://example.com\nhttp://example.net"]
ok.each do |url|
- app = client_applications(:normal_user_app).dup
+ app = build(:client_application)
app.url = url
- assert app.valid?, "#{url} is invalid, when it should be"
+ assert_predicate app, :valid?, "#{url} is invalid, when it should be"
end
bad.each do |url|
- app = client_applications(:normal_user_app)
+ app = build(:client_application)
app.url = url
- assert !app.valid?, "#{url} is valid when it shouldn't be"
+ assert_not app.valid?, "#{url} is valid when it shouldn't be"
end
end
def test_support_url_valid
ok = ["", "http://example.com/test", "https://example.com/test"]
- bad = ["ftp://example.com/test", "myapp://somewhere", "gibberish"]
+ bad = ["ftp://example.com/test", "myapp://somewhere", "gibberish", "http://example.com\nhttp://example.net"]
ok.each do |url|
- app = client_applications(:normal_user_app)
+ app = build(:client_application)
app.support_url = url
- assert app.valid?, "#{url} is invalid, when it should be"
+ assert_predicate app, :valid?, "#{url} is invalid, when it should be"
end
bad.each do |url|
- app = client_applications(:normal_user_app)
+ app = build(:client_application)
app.support_url = url
- assert !app.valid?, "#{url} is valid when it shouldn't be"
+ assert_not app.valid?, "#{url} is valid when it shouldn't be"
end
end
def test_callback_url_valid
ok = ["", "http://example.com/test", "https://example.com/test", "ftp://example.com/test", "myapp://somewhere"]
- bad = ["gibberish"]
+ bad = ["gibberish", "http://example.com\nhttp://example.net"]
ok.each do |url|
- app = client_applications(:normal_user_app)
+ app = build(:client_application)
app.callback_url = url
- assert app.valid?, "#{url} is invalid, when it should be"
+ assert_predicate app, :valid?, "#{url} is invalid, when it should be"
end
bad.each do |url|
- app = client_applications(:normal_user_app)
+ app = build(:client_application)
app.callback_url = url
- assert !app.valid?, "#{url} is valid when it shouldn't be"
+ assert_not app.valid?, "#{url} is valid when it shouldn't be"
end
end
end