X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/f1a0331081794ce17fd93fd2f06d89e6d6df8cba..4e38994d1b287300d6ebd5a34583ade657fb3149:/test/fixtures/users.yml diff --git a/test/fixtures/users.yml b/test/fixtures/users.yml index 873940761..ba66d8795 100644 --- a/test/fixtures/users.yml +++ b/test/fixtures/users.yml @@ -1,10 +1,8 @@ # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html -# The normal user's email is intentionally capitalised that way to -# check that the login is case insensitive normal_user: id: 1 - email: test@OpenStreetMap.org - active: true + email: test@openstreetmap.org + status: active pass_crypt: <%= Digest::MD5.hexdigest('test') %> creation_time: "2007-01-01 00:00:00" display_name: test @@ -13,11 +11,12 @@ normal_user: home_lat: 12.1 home_lon: 12.1 home_zoom: 3 + terms_seen: true public_user: id: 2 email: test@example.com - active: true + status: active pass_crypt: <%= Digest::MD5.hexdigest('test') %> creation_time: "2008-05-01 01:23:45" display_name: test2 @@ -26,11 +25,12 @@ public_user: home_lat: 12 home_lon: 12 home_zoom: 12 + terms_seen: true inactive_user: id: 3 email: inactive@openstreetmap.org - active: false + status: pending pass_crypt: <%= Digest::MD5::hexdigest('test2') %> creation_time: "2008-07-01 02:23:45" display_name: Inactive User @@ -39,3 +39,59 @@ inactive_user: home_lat: 123.4 home_lon: 12.34 home_zoom: 15 + terms_seen: true + +second_public_user: + id: 4 + email: public@OpenStreetMap.org + status: active + pass_crypt: <%= Digest::MD5.hexdigest('test') %> + creation_time: "2008-05-01 01:23:45" + display_name: pulibc_test2 + data_public: true + description: some test description + home_lat: 89 + home_lon: 87 + home_zoom: 12 + terms_seen: true + +moderator_user: + id: 5 + email: moderator@example.com + status: active + pass_crypt: <%= Digest::MD5.hexdigest('test') %> + creation_time: "2008-05-01 01:23:45" + display_name: moderator + data_public: true + terms_seen: true + +administrator_user: + id: 6 + email: administrator@example.com + status: active + pass_crypt: <%= Digest::MD5.hexdigest('test') %> + creation_time: "2008-05-01 01:23:45" + display_name: administrator + data_public: true + terms_seen: true + +terms_not_seen_user: + id: 7 + email: not_agreed@example.com + status: active + pass_crypt: <%= Digest::MD5.hexdigest('test') %> + creation_time: "2011-03-22 00:23:45" + display_name: not_agreed + data_public: true + terms_seen: false + +openid_user: + id: 8 + email: openid-user@example.com + status: active + pass_crypt: <%= Digest::MD5.hexdigest('test') %> + creation_time: "2008-05-01 01:23:45" + display_name: openIDuser + data_public: true + openid_url: http://localhost:1123/john.doe?openid.success=true + terms_seen: true