123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310 |
- # -*- coding: utf-8 -*-
- """
- (c) 2016-2018 - Copyright Red Hat Inc
- Authors:
- Pierre-Yves Chibon <pingou@pingoured.fr>
- """
- from __future__ import unicode_literals, absolute_import
- import unittest
- import sys
- import os
- sys.path.insert(
- 0, os.path.join(os.path.dirname(os.path.abspath(__file__)), "..")
- )
- import tests
- class PagureFlaskPluginNoFFtests(tests.SimplePagureTest):
- """ Tests for Block non fast-forward pushes plugin of pagure """
- def test_plugin_noff(self):
- """ Test the noff plugin on/off endpoint. """
- tests.create_projects(self.session)
- tests.create_projects_git(os.path.join(self.path, "repos"))
- user = tests.FakeUser(username="pingou")
- with tests.user_set(self.app.application, user):
- output = self.app.get(
- "/test/settings/Block non fast-forward pushes"
- )
- self.assertEqual(output.status_code, 200)
- output_text = output.get_data(as_text=True)
- self.assertIn(
- "<title>Settings Block non fast-forward pushes - test - "
- "Pagure</title>",
- output_text,
- )
- if self.get_wtforms_version() >= (2, 2):
- self.assertIn(
- '<input class="form-control pl-0" id="branches" name="branches" '
- 'required type="text" value="">',
- output_text,
- )
- else:
- self.assertIn(
- '<input class="form-control pl-0" id="branches" name="branches" '
- 'type="text" value="">',
- output_text,
- )
- self.assertTrue(
- '<input class="form-check-input mt-2" id="active" name="active" '
- 'type="checkbox" value="y">' in output_text
- )
- csrf_token = output_text.split(
- 'name="csrf_token" type="hidden" value="'
- )[1].split('">')[0]
- data = {}
- output = self.app.post(
- "/test/settings/Block non fast-forward pushes", data=data
- )
- self.assertEqual(output.status_code, 200)
- output_text = output.get_data(as_text=True)
- self.assertIn(
- "<title>Settings Block non fast-forward pushes - test - "
- "Pagure</title>",
- output_text,
- )
- if self.get_wtforms_version() >= (2, 2):
- self.assertIn(
- '<input class="form-control pl-0" id="branches" name="branches" '
- 'required type="text" value="">',
- output_text,
- )
- else:
- self.assertIn(
- '<input class="form-control pl-0" id="branches" name="branches" '
- 'type="text" value="">',
- output_text,
- )
- self.assertTrue(
- '<input class="form-check-input mt-2" id="active" name="active" '
- 'type="checkbox" value="y">' in output_text
- )
- data["csrf_token"] = csrf_token
- # With the git repo
- output = self.app.post(
- "/test/settings/Block non fast-forward pushes",
- data=data,
- follow_redirects=True,
- )
- self.assertEqual(output.status_code, 200)
- output_text = output.get_data(as_text=True)
- self.assertIn(
- '<h5 class="pl-2 font-weight-bold text-muted">'
- "Project Settings</h5>\n",
- output_text,
- )
- self.assertTrue(
- "Hook Block non "
- "fast-forward pushes deactivated" in output_text
- )
- output = self.app.get(
- "/test/settings/Block non fast-forward pushes"
- )
- self.assertEqual(output.status_code, 200)
- output_text = output.get_data(as_text=True)
- self.assertIn(
- "<title>Settings Block non fast-forward pushes - test - "
- "Pagure</title>",
- output_text,
- )
- if self.get_wtforms_version() >= (2, 2):
- self.assertIn(
- '<input class="form-control pl-0" id="branches" name="branches" '
- 'required type="text" value="">',
- output_text,
- )
- else:
- self.assertIn(
- '<input class="form-control pl-0" id="branches" name="branches" '
- 'type="text" value="">',
- output_text,
- )
- self.assertTrue(
- '<input class="form-check-input mt-2" id="active" name="active" '
- 'type="checkbox" value="y">' in output_text
- )
- self.assertFalse(
- os.path.exists(
- os.path.join(
- self.path,
- "repos",
- "test.git",
- "hooks",
- "post-receive.mail",
- )
- )
- )
- # Missing the required mail_to
- data = {"csrf_token": csrf_token, "active": "y"}
- output = self.app.post(
- "/test/settings/Block non fast-forward pushes",
- data=data,
- follow_redirects=True,
- )
- self.assertEqual(output.status_code, 200)
- output_text = output.get_data(as_text=True)
- self.assertIn(
- "<title>Settings Block non fast-forward pushes - test - "
- "Pagure</title>",
- output_text,
- )
- self.assertNotIn("Hook activated", output_text)
- if self.get_wtforms_version() >= (2, 2):
- self.assertIn(
- '<input class="form-control pl-0" id="branches" name="branches" '
- 'required type="text" value="">',
- output_text,
- )
- else:
- self.assertIn(
- '<input class="form-control pl-0" id="branches" name="branches" '
- 'type="text" value="">',
- output_text,
- )
- self.assertTrue(
- '<input checked class="form-check-input mt-2" id="active" name="active" '
- 'type="checkbox" value="y">' in output_text
- )
- self.assertFalse(
- os.path.exists(
- os.path.join(
- self.path,
- "repos",
- "test.git",
- "hooks",
- "pre-receive.pagureforcecommit",
- )
- )
- )
- # Activate hook
- data = {
- "csrf_token": csrf_token,
- "active": "y",
- "branches": "master",
- }
- output = self.app.post(
- "/test/settings/Block non fast-forward pushes",
- data=data,
- follow_redirects=True,
- )
- self.assertEqual(output.status_code, 200)
- output_text = output.get_data(as_text=True)
- self.assertIn(
- '<h5 class="pl-2 font-weight-bold text-muted">'
- "Project Settings</h5>\n",
- output_text,
- )
- self.assertIn(
- "Hook Block non " "fast-forward pushes activated", output_text
- )
- output = self.app.get(
- "/test/settings/Block non fast-forward pushes"
- )
- output_text = output.get_data(as_text=True)
- self.assertIn(
- "<title>Settings Block non fast-forward pushes - test - "
- "Pagure</title>",
- output_text,
- )
- if self.get_wtforms_version() >= (2, 2):
- self.assertIn(
- '<input class="form-control pl-0" id="branches" name="branches" '
- 'required type="text" value="master">',
- output_text,
- )
- else:
- self.assertIn(
- '<input class="form-control pl-0" id="branches" name="branches" '
- 'type="text" value="master">',
- output_text,
- )
- self.assertIn(
- '<input checked class="form-check-input mt-2" id="active" name="active" '
- 'type="checkbox" value="y">',
- output_text,
- )
- # De-Activate hook
- data = {"csrf_token": csrf_token}
- output = self.app.post(
- "/test/settings/Block non fast-forward pushes",
- data=data,
- follow_redirects=True,
- )
- self.assertEqual(output.status_code, 200)
- output_text = output.get_data(as_text=True)
- self.assertIn(
- '<h5 class="pl-2 font-weight-bold text-muted">'
- "Project Settings</h5>\n",
- output_text,
- )
- self.assertIn(
- "Hook Block non " "fast-forward pushes deactivated",
- output_text,
- )
- output = self.app.get(
- "/test/settings/Block non fast-forward pushes"
- )
- output_text = output.get_data(as_text=True)
- self.assertIn(
- "<title>Settings Block non fast-forward pushes - test - "
- "Pagure</title>",
- output_text,
- )
- if self.get_wtforms_version() >= (2, 2):
- self.assertIn(
- '<input class="form-control pl-0" id="branches" name="branches" '
- 'required type="text" value="">',
- output_text,
- )
- else:
- self.assertIn(
- '<input class="form-control pl-0" id="branches" name="branches" '
- 'type="text" value="">',
- output_text,
- )
- self.assertIn(
- '<input class="form-check-input mt-2" id="active" name="active" '
- 'type="checkbox" value="y">',
- output_text,
- )
- self.assertFalse(
- os.path.exists(
- os.path.join(
- self.path,
- "repos",
- "test.git",
- "hooks",
- "pre-receive.pagureforcecommit",
- )
- )
- )
- if __name__ == "__main__":
- unittest.main(verbosity=2)
|