1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-06-20 20:32:44 +00:00
seahub/tests/common/utils.py
2014-09-06 11:38:20 +08:00

22 lines
451 B
Python

import string
import random
from .common import BASE_URL
def randstring(length=0):
if length == 0:
length = random.randint(1, 30)
return ''.join(random.choice(string.lowercase) for i in range(length))
def urljoin(base, *args):
url = base
if url[-1] != '/':
url += '/'
for arg in args:
arg = arg.strip('/')
url += arg + '/'
return url
def apiurl(*parts):
return urljoin(BASE_URL, *parts)