本文整理汇总了Python中monstor.utils.web.slugify函数的典型用法代码示例。如果您正苦于以下问题:Python slugify函数的具体用法?Python slugify怎么用?Python slugify使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了slugify函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_0020_tasklists_post1
def test_0020_tasklists_post1(self):
"""
Test post with logged in and invalid organisation slug
"""
organisation = Organisation(
name="open labs", slug=slugify("open labs")
)
organisation.save()
team = Team(
name="Developers", organisation=organisation,
members=[self.user]
)
team.save()
acl = AccessControlList(team=team, role="admin")
project = Project(
name="titan", organisation=organisation, acl=[acl],
slug=slugify('titan project')
)
project.save()
response = self.fetch(
'/an-invalid-organisation/%s/tasklists' % project.slug,
method="POST",
follow_redirects=False,
body=urlencode({'name': "Version 0.1"}),
headers={'Cookie': self.get_login_cookie()}
)
self.assertEqual(response.code, 404)
示例2: test_0060_slugverification_2
def test_0060_slugverification_2(self):
"""
Verify project slug which already exists under current organisations
"""
organisation = Organisation(
name="open labs", slug=slugify("open labs")
)
organisation.save()
team = Team(
name="Developers", organisation=organisation,
members=[self.user]
)
team.save()
acl = AccessControlList(team=team, role="admin")
project = Project(
name="titan", organisation=organisation, acl=[acl],
slug=slugify('titan project')
)
project.save()
response = self.fetch(
'/%s/+slug-check' % organisation.slug,
method="POST",
follow_redirects=False,
body=urlencode({
'project_slug':slugify('titan project')
}),
headers= {'Cookie' : self.get_login_cookie()}
)
response = json.loads(response.body)
self.assertEqual(response, False)
示例3: test_0040_projects_post_2
def test_0040_projects_post_2(self):
"""
post with logged in and Project slug already exist
"""
organisation = Organisation(
name="open labs", slug=slugify("open labs")
)
organisation.save()
team = Team(
name="Developers", organisation=organisation,
members=[self.user]
)
team.save()
acl = AccessControlList(team=team, role="admin")
project = Project(
name="titan", organisation=organisation, acl=[acl],
slug=slugify('titan project')
)
project.save()
response = self.fetch(
'/%s/projects/' % organisation.slug,
method="POST",
follow_redirects=False,
body=urlencode({'name':'Titan', 'slug':slugify('titan project')}),
headers= {'Cookie' : self.get_login_cookie()}
)
self.assertEqual(response.code, 200)
self.assertEqual(
response.body.count(
u'A project with the same short code already exists'
), 1
)
示例4: test_0090_task_handler_get_1
def test_0090_task_handler_get_1(self):
"""
Try to render a particular task without being logged in
"""
organisation = Organisation(
name="open labs", slug=slugify("open labs")
)
organisation.save()
team = Team(
name="Developers", organisation=organisation,
members=[self.user]
)
team.save()
acl = AccessControlList(team=team, role="admin")
project = Project(
name="titan", organisation=organisation, acl=[acl],
slug=slugify('titan project')
)
project.save()
tasklist = TaskList(name="version 01", project=project)
tasklist.save()
response = self.fetch(
'/%s/%s/%s/tasks/new' % (
organisation.slug, project.slug, tasklist.sequence
),
method="GET",
follow_redirects=False,
)
self.assertEqual(response.code, 302)
示例5: test_0160_task_handler_post_5
def test_0160_task_handler_post_5(self):
"""
Test TaskHandler 'post' method invalid form fields
"""
organisation = Organisation(
name="open labs", slug=slugify("open labs")
)
organisation.save()
team = Team(
name="Developers", organisation=organisation,
members=[self.user]
)
team.save()
acl = AccessControlList(team=team, role="admin")
project = Project(
name="titan", organisation=organisation, acl=[acl],
slug=slugify('titan project')
)
project.save()
tasklist = TaskList(name="version 01", project=project)
tasklist.save()
response = self.fetch(
'/%s/%s/%s/tasks/new' % (
organisation.slug, project.slug, tasklist.sequence
),
method="POST",
follow_redirects=False,
body=urlencode({
"status": "new",
"assigned_to": str(self.user.id),
}),
headers={'Cookie': self.get_login_cookie()},
)
self.assertEqual(response.code, 200)
示例6: test_0100_task_handler_get_2
def test_0100_task_handler_get_2(self):
"""
Try to render a particular task without providing Task Id
If 'task id' is not provided, then it will return create task form.
"""
organisation = Organisation(
name="open labs", slug=slugify("open labs")
)
organisation.save()
team = Team(
name="Developers", organisation=organisation,
members=[self.user]
)
team.save()
acl = AccessControlList(team=team, role="admin")
project = Project(
name="titan", organisation=organisation, acl=[acl],
slug=slugify('titan project')
)
project.save()
tasklist = TaskList(name="version 01", project=project)
tasklist.save()
response = self.fetch(
'/%s/%s/%s/tasks/new' % (
organisation.slug, project.slug, tasklist.sequence
),
method="GET",
follow_redirects=False,
headers={'Cookie': self.get_login_cookie()}
)
self.assertEqual(response.code, 200)
示例7: test_0150_user_organisation
def test_0150_user_organisation(self):
"""
Test the organisation property of user
"""
user_2 = User(
name="test-user",
email="[email protected]",
)
user_2.set_password("openlabs")
user_2.save()
# Create organisations
organisation_1 = Organisation(
name="open labs", slug=slugify("open labs")
)
organisation_1.save()
organisation_2 = Organisation(
name="new organisation", slug=slugify("new organisation")
)
organisation_2.save()
# Create teams
team_developers = Team(
name="Developers", organisation=organisation_1,
members=[self.user, user_2]
)
team_developers.save()
team_participants = Team(
name="Paricipants", organisation=organisation_2,
members=[self.user]
)
team_participants.save()
self.assertEqual(len(self.user.organisations), 2)
self.assertEqual(len(user_2.organisations), 1)
示例8: test_0080_tasklist_get_1
def test_0080_tasklist_get_1(self):
"""
Test Task List with wrong organisation slug
"""
organisation = Organisation(
name="open labs", slug=slugify("open labs")
)
organisation.save()
team = Team(
name="Developers", organisation=organisation,
members=[self.user]
)
team.save()
acl = AccessControlList(team=team, role="admin")
project = Project(
name="titan", organisation=organisation, acl=[acl],
slug=slugify('titan project')
)
project.save()
tasklist = TaskList(name="version 01", project=project)
tasklist.save()
response = self.fetch(
'/wrong-organisation/%s/%s' % (project.slug, tasklist.sequence),
method="GET",
follow_redirects=False,
headers={'Cookie': self.get_login_cookie()}
)
self.assertEqual(response.code, 404)
示例9: test_0070_projecthandler_1
def test_0070_projecthandler_1(self):
"""
Test project page which already exist
"""
organisation = Organisation(
name="open labs", slug=slugify("open labs")
)
organisation.save()
team = Team(
name="Developers", organisation=organisation,
members=[self.user]
)
team.save()
acl = AccessControlList(team=team, role="admin")
project = Project(
name="titan", organisation=organisation, acl=[acl],
slug=slugify('titan project')
)
project.save()
response = self.fetch(
'/%s/%s' % (organisation.slug, project.slug),
method="GET",
follow_redirects=False,
headers= {'Cookie' : self.get_login_cookie()}
)
self.assertEqual(response.code, 200)
示例10: test_0020_unique_slug
def test_0020_unique_slug(self):
"""
'slug' must be a unique value in Organisation.
"""
organisation = Organisation(
name="open labs", slug=slugify("open labs")
)
organisation.save()
organisation = Organisation(name="open lab", slug=slugify("open labs"))
self.assertRaises(OperationError, organisation.save)
示例11: create_project
def create_project(user, name, slug, organisation):
"""
Create a new project and return the object.
:param user: User collection object
:param name: The name of the project
:param slug: The slug used for the project.
:param organisation: The organisation the project belongs to.
:return: Created project as Document
"""
acl_admin = AccessControlList(
team=Team(
name="Admin", organisation=organisation, members=[user]
).save(), role="admin"
)
acl_participant = AccessControlList(
team=Team(
name="Participant", organisation=organisation, members=[user]
).save(), role="participant"
)
project = Project(
name=name, organisation=organisation, acl=[acl_admin, acl_participant],
slug=slugify(slug)
)
return project
示例12: test_0010_tasklistshandler_get
def test_0010_tasklistshandler_get(self):
"""
Test tasklists handler get method
"""
organisation = Organisation(
name="open labs", slug=slugify("open labs")
)
organisation.save()
team = Team(
name="Developers", organisation=organisation,
members=[self.user]
)
team.save()
acl = AccessControlList(team=team, role="admin")
project = Project(
name="titan", organisation=organisation, acl=[acl],
slug=slugify('titan project')
)
project.save()
# User not logged in
response = self.fetch(
'/%s/%s/tasklists' % (organisation.slug, project.slug),
method="GET",
follow_redirects=False
)
self.assertEqual(response.code, 302)
# User logged in and an existing organisation
cookies = self.get_login_cookie()
response = self.fetch(
'/%s/%s/tasklists' % (organisation.slug, project.slug),
method="GET",
follow_redirects=False,
headers={'Cookie': cookies}
)
self.assertEqual(response.code, 200)
# User logged in and Organisation not existing
cookies = self.get_login_cookie()
response = self.fetch(
'/an-invalid-organisation/%s/tasklists' % project.slug,
method="GET",
follow_redirects=False,
headers={'Cookie': cookies}
)
self.assertEqual(response.code, 404)
示例13: test_0100_project_fields
def test_0100_project_fields(self):
"""
Test the fields required for the Project collection.
"""
organisation = Organisation(
name="open labs", slug=slugify("open labs")
)
organisation.save()
# Create AccessControlList instances
acl_developers = AccessControlList(
team=Team(
name="Admins", organisation=organisation, members=[self.user]
).save(), role="admin"
)
acl_participants = AccessControlList(
team=Team(
name="Viewers", organisation=organisation, members=[self.user]
).save(), role="participant"
)
# 'organisation' is a required field
project = Project(
name="titan", slug=slugify("titan project"), acl=[acl_developers,
acl_participants]
)
self.assertRaises(ValidationError, project.save)
# 'acl' is a a required field
project = Project(name="New Titan", slug=slugify( "titan projects"),
organisation=organisation
)
self.assertRaises(ValidationError, project.save)
# 'name' is a required field
project = Project(slug=slugify("titan project"),
organisation=organisation, acl=[acl_developers, acl_participants]
)
self.assertRaises(ValidationError, project.save)
# 'slug' is a required field
project = Project(
name="titan", organisation=organisation,
acl=[acl_developers, acl_participants]
)
self.assertRaises(ValidationError, project.save)
示例14: test_0090_same_slug
def test_0090_same_slug(self):
"""
We can use same project "slug" under different organisations
"""
organisation = Organisation(
name="open labs", slug=slugify("open labs")
)
organisation.save()
project = create_project(
self.user, "New Titan", "titan projects", organisation
)
project.save()
new_organisation = Organisation(name="Infy", slug=slugify("infy labs"))
new_organisation.save()
project = create_project(
self.user, "New Titan", "titan projects", new_organisation
)
project.save()
示例15: test_0010_create_organisation
def test_0010_create_organisation(self):
"""
Create an Organisation
"""
organisation = Organisation(
name="open labs", slug=slugify("open labs")
)
organisation.save()
self.assertEqual(Organisation.objects().count(), 1)