This repository was archived by the owner on Oct 6, 2020. It is now read-only.
forked from kennethreitz/env
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtests.py
60 lines (40 loc) · 1.63 KB
/
tests.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import env
from os import environ
try:
from urlparse import urlparse as _urlparse
except ImportError:
from urllib.parse import urlparse as _urlparse
searchprefix = 'env1'
matchdata = {'env1TESTS1': 'aA', 'ENV1tests2': 'bB', 'env1tests3': 'cC'}
nomatchdata = {'env2TESTS4': 'dD', 'ENV2tests5': 'eE', 'env2tests6': 'fF'}
for matchvalue in matchdata:
environ[matchvalue] = matchdata[matchvalue]
for nomatchvalue in nomatchdata:
environ[nomatchvalue] = nomatchdata[nomatchvalue]
def compare_values(a, b):
assert a == b
def test_lower_dict():
lowereddict = env.lower_dict(matchdata)
yield compare_values, len(lowereddict), len(matchdata)
for item in matchdata:
yield compare_values, matchdata[item], lowereddict[item.lower()]
def test_urlparse():
urldata = {'url1': 'http://env1.test', 'url2': 'ftp://env2.test'}
parseddata = env.urlparse(urldata)
yield compare_values, len(parseddata), len(urldata)
for item in urldata:
yield compare_values, _urlparse(urldata[item]), parseddata[item]
def test_prefix():
prefixsearch = env.prefix(searchprefix)
yield compare_values, len(prefixsearch), len(matchdata)
for item in matchdata:
yield compare_values, matchdata[item], prefixsearch[item.lower()[len(searchprefix):]]
def test_map():
mapdata = {'a': 'env1tests1', 'b': 'env1tests2', 'c': 'env1tests3'}
originaldata = {'env1tests1': 'aA', 'env1tests2': 'bB', 'env1tests3': 'cC'}
mapsearch = env.map(a='env1tests1', b='env1tests2', c='env1tests3')
yield compare_values, len(mapsearch), len(mapdata)
for item in mapdata:
yield compare_values, originaldata[mapdata[item]], mapsearch[item]