]> git.openstreetmap.org Git - rails.git/blob - test/test_helper.rb
Check that the flag is not show when not logged in
[rails.git] / test / test_helper.rb
1 require "coveralls"
2 Coveralls.wear!("rails")
3
4 ENV["RAILS_ENV"] = "test"
5 require File.expand_path("../../config/environment", __FILE__)
6 require "rails/test_help"
7 require "webmock/minitest"
8 require "minitest/rails/capybara"
9
10 module ActiveSupport
11   class TestCase
12     include FactoryGirl::Syntax::Methods
13
14     ##
15     # takes a block which is executed in the context of a different
16     # ActionController instance. this is used so that code can call methods
17     # on the node controller whilst testing the old_node controller.
18     def with_controller(new_controller)
19       controller_save = @controller
20       begin
21         @controller = new_controller
22         yield
23       ensure
24         @controller = controller_save
25       end
26     end
27
28     ##
29     # work round minitest insanity that causes it to tell you
30     # to use assert_nil to test for nil, which is fine if you're
31     # comparing to a nil constant but not if you're comparing
32     # an expression that might be nil sometimes
33     def assert_equal_allowing_nil(exp, act, msg = nil)
34       if exp.nil?
35         assert_nil act, msg
36       else
37         assert_equal exp, act, msg
38       end
39     end
40
41     ##
42     # for some reason assert_equal a, b fails when the relations are
43     # actually equal, so this method manually checks the fields...
44     def assert_relations_are_equal(a, b)
45       assert_not_nil a, "first relation is not allowed to be nil"
46       assert_not_nil b, "second relation #{a.id} is not allowed to be nil"
47       assert_equal a.id, b.id, "relation IDs"
48       assert_equal a.changeset_id, b.changeset_id, "changeset ID on relation #{a.id}"
49       assert_equal a.visible, b.visible, "visible on relation #{a.id}, #{a.visible.inspect} != #{b.visible.inspect}"
50       assert_equal a.version, b.version, "version on relation #{a.id}"
51       assert_equal a.tags, b.tags, "tags on relation #{a.id}"
52       assert_equal a.members, b.members, "member references on relation #{a.id}"
53     end
54
55     ##
56     # for some reason assert_equal a, b fails when the ways are actually
57     # equal, so this method manually checks the fields...
58     def assert_ways_are_equal(a, b)
59       assert_not_nil a, "first way is not allowed to be nil"
60       assert_not_nil b, "second way #{a.id} is not allowed to be nil"
61       assert_equal a.id, b.id, "way IDs"
62       assert_equal a.changeset_id, b.changeset_id, "changeset ID on way #{a.id}"
63       assert_equal a.visible, b.visible, "visible on way #{a.id}, #{a.visible.inspect} != #{b.visible.inspect}"
64       assert_equal a.version, b.version, "version on way #{a.id}"
65       assert_equal a.tags, b.tags, "tags on way #{a.id}"
66       assert_equal a.nds, b.nds, "node references on way #{a.id}"
67     end
68
69     ##
70     # for some reason a==b is false, but there doesn't seem to be any
71     # difference between the nodes, so i'm checking all the attributes
72     # manually and blaming it on ActiveRecord
73     def assert_nodes_are_equal(a, b)
74       assert_equal a.id, b.id, "node IDs"
75       assert_equal a.latitude, b.latitude, "latitude on node #{a.id}"
76       assert_equal a.longitude, b.longitude, "longitude on node #{a.id}"
77       assert_equal a.changeset_id, b.changeset_id, "changeset ID on node #{a.id}"
78       assert_equal a.visible, b.visible, "visible on node #{a.id}"
79       assert_equal a.version, b.version, "version on node #{a.id}"
80       assert_equal a.tags, b.tags, "tags on node #{a.id}"
81     end
82
83     ##
84     # set request headers for HTTP basic authentication
85     def basic_authorization(user, pass)
86       @request.env["HTTP_AUTHORIZATION"] = format("Basic %s", Base64.encode64("#{user}:#{pass}"))
87     end
88
89     ##
90     # set request readers to ask for a particular error format
91     def error_format(format)
92       @request.env["HTTP_X_ERROR_FORMAT"] = format
93     end
94
95     ##
96     # set the raw body to be sent with a POST request
97     def content(c)
98       @request.env["RAW_POST_DATA"] = c.to_s
99     end
100
101     ##
102     # Used to check that the error header and the forbidden responses are given
103     # when the owner of the changset has their data not marked as public
104     def assert_require_public_data(msg = "Shouldn't be able to use API when the user's data is not public")
105       assert_response :forbidden, msg
106       assert_equal @response.headers["Error"], "You must make your edits public to upload new data", "Wrong error message"
107     end
108
109     ##
110     # Not sure this is the best response we could give
111     def assert_inactive_user(msg = "an inactive user shouldn't be able to access the API")
112       assert_response :unauthorized, msg
113       # assert_equal @response.headers['Error'], ""
114     end
115
116     ##
117     # Check for missing translations in an HTML response
118     def assert_no_missing_translations(msg = "")
119       assert_select "span[class=translation_missing]", false, "Missing translation #{msg}"
120     end
121
122     ##
123     # execute a block with a given set of HTTP responses stubbed
124     def with_http_stubs(stubs_file)
125       stubs = YAML.load_file(File.expand_path("../http/#{stubs_file}.yml", __FILE__))
126       stubs.each do |url, response|
127         stub_request(:get, Regexp.new(Regexp.quote(url))).to_return(:status => response["code"], :body => response["body"])
128       end
129
130       yield
131     end
132
133     def stub_gravatar_request(email, status = 200, body = nil)
134       hash = Digest::MD5.hexdigest(email.downcase)
135       url = "https://www.gravatar.com/avatar/#{hash}?d=404"
136       stub_request(:get, url).and_return(:status => status, :body => body)
137     end
138
139     def stub_hostip_requests
140       # Controller tests and integration tests use different IPs
141       stub_request(:get, "http://api.hostip.info/country.php?ip=0.0.0.0")
142       stub_request(:get, "http://api.hostip.info/country.php?ip=127.0.0.1")
143     end
144
145     def email_text_parts(message)
146       message.parts.each_with_object([]) do |part, text_parts|
147         if part.content_type.start_with?("text/")
148           text_parts.push(part)
149         elsif part.multipart?
150           text_parts.concat(email_text_parts(part))
151         end
152       end
153     end
154
155     def sign_in_as(user)
156       stub_hostip_requests
157       visit login_path
158       fill_in "username", :with => user.email
159       fill_in "password", :with => "test"
160       click_on "Login", :match => :first
161     end
162   end
163 end