Add (failing) test for editing the slug.
authorElrond <elrond+mediagoblin.org@samba-tng.org>
Fri, 18 Jan 2013 20:17:52 +0000 (21:17 +0100)
committerElrond <elrond+mediagoblin.org@samba-tng.org>
Fri, 18 Jan 2013 20:21:42 +0000 (21:21 +0100)
This test fails, because it tries to set a slug with an "="
in it. And tests that the "=" gets replaced by "-".

Well, it currently is not being replaced.

The next (cherry picked) commit by Sebastian Spaeth fixes
this test!

mediagoblin/tests/test_submission.py

index 606c0e270d56cc7e27f54d9612a4428b5429c335..00f1ed3de0a480a402206474eaad87303e6f2cb8 100644 (file)
@@ -161,11 +161,17 @@ class TestSubmission:
         media = self.check_media(request, {'title': u'Balanced Goblin'}, 1)
         media_id = media.id
 
-        # At least render the edit page
+        # render and post to the edit page.
         edit_url = request.urlgen(
             'mediagoblin.edit.edit_media',
             user=self.test_user.username, media_id=media_id)
         self.test_app.get(edit_url)
+        self.test_app.post(edit_url,
+            {'title': u'Balanced Goblin',
+             'slug': u"Balanced=Goblin",
+             'tags': u''})
+        media = self.check_media(request, {'title': u'Balanced Goblin'}, 1)
+        assert_equal(media.slug, u"balanced-goblin")
 
         # Add a comment, so we can test for its deletion later.
         self.check_comments(request, media_id, 0)