X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/b875d14b7cd13432b0683ca548b341dcd8bddf80..11b1f7d739f7d85c8a65c2a8337394b333c8eee1:/test/fixtures/changesets.yml diff --git a/test/fixtures/changesets.yml b/test/fixtures/changesets.yml index 2047af8d5..f7d898210 100644 --- a/test/fixtures/changesets.yml +++ b/test/fixtures/changesets.yml @@ -7,35 +7,65 @@ normal_user_first_change: id: 1 user_id: 1 created_at: "2007-01-01 00:00:00" - open: true + closed_at: <%= DateTime.now + Rational(1,24) %> min_lon: <%= 1 * SCALE %> min_lat: <%= 1 * SCALE %> max_lon: <%= 5 * SCALE %> max_lat: <%= 5 * SCALE %> + num_changes: 11 -second_user_first_change: +public_user_first_change: id: 2 user_id: 2 - created_at: "2008-05-01 01:23:45" - open: true + created_at: <%= DateTime.now.utc %> + closed_at: <%= DateTime.now + Rational(1,24) %> + num_changes: 0 normal_user_closed_change: id: 3 user_id: 1 created_at: "2007-01-01 00:00:00" - open: false + closed_at: "2007-01-02 00:00:00" + num_changes: 0 -normal_user_version_change: +public_user_closed_change: + id: 7 + user_id: 2 + created_at: "2007-01-01 00:00:00" + closed_at: "2007-01-02 00:00:00" + num_changes: 0 + +public_user_version_change: id: 4 - user_id: 1 - created_at: "2008-01-01 00:00:00" - open: true + user_id: 2 + created_at: <%= DateTime.now.utc %> + closed_at: <%= DateTime.now + Rational(1,24) %> + min_lon: <%= 1 * SCALE %> + min_lat: <%= 1 * SCALE %> + max_lon: <%= 4 * SCALE %> + max_lat: <%= 4 * SCALE %> + num_changes: 8 # changeset to contain all the invalid stuff that is in the -# fixtures (nodes outside the world, etc...) +# fixtures (nodes outside the world, etc...), but needs to have +# a valid user... invalid_changeset: id: 5 - user_id: 0 + user_id: 3 + created_at: "2008-01-01 00:00:00" + closed_at: "2008-01-02 00:00:00" + num_changes: 9 + +# changeset which still has time remaining, but has been closed +# by containing too many elements. +too_many_elements_changeset: + id: 6 + user_id: 1 created_at: "2008-01-01 00:00:00" - open: false - \ No newline at end of file + closed_at: <%= DateTime.now + Rational(1,24) %> + min_lon: <%= 1 * SCALE %> + min_lat: <%= 1 * SCALE %> + max_lon: <%= 4 * SCALE %> + max_lat: <%= 4 * SCALE %> + num_changes: <%= Changeset::MAX_ELEMENTS + 1 %> +