blob: c601e821c7614c106e0782a53d5224de9d024116 [file] [log] [blame]
Kata7185c62013-04-04 17:31:13 +02001#!/usr/bin/env python
2
3# (C) 2013 by Katerina Barone-Adesi <kat.obsc@gmail.com>
4# This program is free software: you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
6# the Free Software Foundation, either version 3 of the License, or
7# (at your option) any later version.
8
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13
14# You should have received a copy of the GNU General Public License
15# along with this program. If not, see <http://www.gnu.org/licenses/>.
16
17import os
18import os.path
19import time
Max6c33a152016-04-13 17:29:51 +020020import sys, shutil, stat
Kata7185c62013-04-04 17:31:13 +020021import tempfile
22
23import osmopy.obscvty as obscvty
24import osmopy.osmoutil as osmoutil
25
26
27# Return true iff all the tests for the given config pass
28def test_config(app_desc, config, tmpdir, verbose=True):
29 try:
Holger Hans Peter Freyther4e98c262014-07-04 20:43:38 +020030 err = 0
Holger Hans Peter Freytherb819b572015-01-31 21:15:06 +010031 if test_config_atest(app_desc, config, verify_doc, verbose)[0] > 0:
Holger Hans Peter Freyther4e98c262014-07-04 20:43:38 +020032 err += 1
Kata7185c62013-04-04 17:31:13 +020033
34 newconfig = copy_config(tmpdir, config)
Holger Hans Peter Freyther4e98c262014-07-04 20:43:38 +020035 if test_config_atest(app_desc, newconfig, write_config, verbose) > 0:
36 err += 1
37
38 if test_config_atest(app_desc, newconfig, token_vty_command, verbose) > 0:
39 err += 1
40
41 return err
Kata7185c62013-04-04 17:31:13 +020042
43 # If there's a socket error, skip the rest of the tests for this config
44 except IOError:
45 return 1
46
47
48def test_config_atest(app_desc, config, run_test, verbose=True):
49 proc = None
50 ret = None
51 try:
Max5f4567b2016-03-30 14:58:17 +020052 cmd = app_desc[1].split(' ') + [ "-c", config]
Kata7185c62013-04-04 17:31:13 +020053 if verbose:
54 print "Verifying %s, test %s" % (' '.join(cmd), run_test.__name__)
55
56 proc = osmoutil.popen_devnull(cmd)
57 time.sleep(1)
58 end = app_desc[2]
59 port = app_desc[0]
60 vty = obscvty.VTYInteract(end, "127.0.0.1", port)
61 ret = run_test(vty)
62
63 except IOError as se:
64 print >> sys.stderr, "Failed to verify %s" % ' '.join(cmd)
Kat0248d3b2013-04-05 20:19:17 +020065 print >> sys.stderr, "Current directory: %s" % os.getcwd()
Kata7185c62013-04-04 17:31:13 +020066 print >> sys.stderr, "Error was %s" % se
67 raise se
68
69 finally:
70 if proc:
71 osmoutil.end_proc(proc)
72
73 return ret
74
Kata7185c62013-04-04 17:31:13 +020075def copy_config(dirname, config):
Max334d6802016-04-07 14:11:25 +020076 shutil.rmtree(dirname, True)
77 ign = shutil.ignore_patterns('*.cfg')
78 shutil.copytree(os.path.dirname(config), dirname, ignore=ign)
Max6c33a152016-04-13 17:29:51 +020079 os.chmod(dirname, stat.S_IRWXU)
Max334d6802016-04-07 14:11:25 +020080
Kata7185c62013-04-04 17:31:13 +020081 try:
82 os.stat(dirname)
83 except OSError:
84 os.mkdir(dirname)
Kata7185c62013-04-04 17:31:13 +020085
86 prefix = os.path.basename(config)
87 tmpfile = tempfile.NamedTemporaryFile(
88 dir=dirname, prefix=prefix, delete=False)
89 tmpfile.write(open(config).read())
90 tmpfile.close()
91 # This works around the precautions NamedTemporaryFile is made for...
92 return tmpfile.name
93
94
95def write_config(vty):
96 new_config = vty.enabled_command("write")
Holger Hans Peter Freytherb819b572015-01-31 21:15:06 +010097 print new_config.split(' ')[-1]
98 return 0
Kata7185c62013-04-04 17:31:13 +020099
100
101# The only purpose of this function is to verify a working vty
102def token_vty_command(vty):
103 vty.command("help")
Holger Hans Peter Freyther4e98c262014-07-04 20:43:38 +0200104 return 0
Kata7185c62013-04-04 17:31:13 +0200105
106
107# This may warn about the same doc missing multiple times, by design
108def verify_doc(vty):
109 xml = vty.command("show online-help")
110 split_at = "<command"
111 all_errs = []
112 for command in xml.split(split_at):
113 if "(null)" in command:
114 lines = command.split("\n")
115 cmd_line = split_at + lines[0]
116 err_lines = []
117 for line in lines:
118 if '(null)' in line:
119 err_lines.append(line)
120
121 all_errs.append(err_lines)
122
123 print >> sys.stderr, \
124 "Documentation error (missing docs): \n%s\n%s\n" % (
125 cmd_line, '\n'.join(err_lines))
126
127 return (len(all_errs), all_errs)
128
129
130# Skip testing the configurations of anything that hasn't been compiled
131def app_exists(app_desc):
Max5f4567b2016-03-30 14:58:17 +0200132 cmd = app_desc[1].split(' ')[0]
Kata7185c62013-04-04 17:31:13 +0200133 return os.path.exists(cmd)
134
135
136def remove_tmpdir(tmpdir):
137 files = os.listdir(tmpdir)
138 for f in files:
139 os.unlink(os.path.join(tmpdir, f))
140 os.rmdir(tmpdir)
141
142
Maxd401cc12016-03-30 14:58:16 +0200143def check_configs_tested(basedir, app_configs, ignore_configs):
Kata7185c62013-04-04 17:31:13 +0200144 configs = []
145 for root, dirs, files in os.walk(basedir):
146 for f in files:
Maxd401cc12016-03-30 14:58:16 +0200147 if f.endswith(".cfg") and f not in ignore_configs:
Kata7185c62013-04-04 17:31:13 +0200148 configs.append(os.path.join(root, f))
149 for config in configs:
150 found = False
151 for app in app_configs:
152 if config in app_configs[app]:
153 found = True
154 if not found:
155 print >> sys.stderr, "Warning: %s is not being tested" % config
156
157
158def test_all_apps(apps, app_configs, tmpdir="writtenconfig", verbose=True,
Maxd401cc12016-03-30 14:58:16 +0200159 confpath=".", rmtmp=False, ignore_configs=[]):
160 check_configs_tested("doc/examples/", app_configs, ignore_configs)
Kata7185c62013-04-04 17:31:13 +0200161 errors = 0
162 for app in apps:
163 if not app_exists(app):
164 print >> sys.stderr, "Skipping app %s (not found)" % app[1]
165 continue
166
167 configs = app_configs[app[3]]
168 for config in configs:
Kat0248d3b2013-04-05 20:19:17 +0200169 config = os.path.join(confpath, config)
Kata7185c62013-04-04 17:31:13 +0200170 errors |= test_config(app, config, tmpdir, verbose)
171
Kat0248d3b2013-04-05 20:19:17 +0200172 if rmtmp or not errors:
Kata7185c62013-04-04 17:31:13 +0200173 remove_tmpdir(tmpdir)
174
175 return errors
176
177
178if __name__ == '__main__':
179 import argparse
180
181 confpath = "."
Kat0248d3b2013-04-05 20:19:17 +0200182 wordir = "."
Kata7185c62013-04-04 17:31:13 +0200183
184 parser = argparse.ArgumentParser()
185 parser.add_argument("--e1nitb", action="store_true", dest="e1nitb")
186 parser.add_argument("-v", "--verbose", dest="verbose",
187 action="store_true", help="verbose mode")
188 parser.add_argument("-p", "--pythonconfpath", dest="p",
189 help="searchpath for config")
Kat0248d3b2013-04-05 20:19:17 +0200190 parser.add_argument("-w", "--workdir", dest="w",
191 help="Working directory to run in")
192
Kata7185c62013-04-04 17:31:13 +0200193 args = parser.parse_args()
194
195 if args.p:
196 confpath = args.p
197
Kat0248d3b2013-04-05 20:19:17 +0200198 if args.w:
199 workdir = args.w
200
Kat0270be42013-04-05 21:34:52 +0200201 osmoappdesc = osmoutil.importappconf_or_quit(confpath, "osmoappdesc",
202 args.p)
Kata7185c62013-04-04 17:31:13 +0200203
204 apps = osmoappdesc.apps
205 configs = osmoappdesc.app_configs
Maxd401cc12016-03-30 14:58:16 +0200206 ignores = getattr(osmoappdesc, 'ignore_configs', [])
Kata7185c62013-04-04 17:31:13 +0200207
208 if args.e1nitb:
209 configs['nitb'].extend(osmoappdesc.nitb_e1_configs)
210
Kat0248d3b2013-04-05 20:19:17 +0200211 os.chdir(workdir)
Maxd401cc12016-03-30 14:58:16 +0200212 sys.exit(test_all_apps(apps, configs, ignore_configs=ignores,
213 confpath=confpath, verbose=args.verbose))