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
|
#!/usr/bin/python
"""
Test the PostgreSQL charm.
Usage:
juju bootstrap -v --upload-tools
TEST_TIMEOUT=900 ./test.py -v
juju destroy-environment
"""
import os.path
import socket
import subprocess
import time
import unittest
import fixtures
import psycopg2
import testtools
from testtools.content import text_content
from testing.jujufixture import JujuFixture, run
SERIES = 'precise'
TEST_CHARM = 'local:openvpn-server'
# FIXME test case goes here
def unit_sorted(units):
"""Return a correctly sorted list of unit names."""
return sorted(
units, lambda a, b: cmp(int(a.split('/')[-1]), int(b.split('/')[-1])))
if __name__ == '__main__':
raise SystemExit(unittest.main())
|