blob: b020d862bf491ad8a6b7c6ae79ac28c9d1c4c3e1 [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
20import sys
21import 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
75
76def copy_config(dirname, config):
77 try:
78 os.stat(dirname)
79 except OSError:
80 os.mkdir(dirname)
81 else:
82 remove_tmpdir(dirname)
83 os.mkdir(dirname)
84
85 prefix = os.path.basename(config)
86 tmpfile = tempfile.NamedTemporaryFile(
87 dir=dirname, prefix=prefix, delete=False)
88 tmpfile.write(open(config).read())
89 tmpfile.close()
90 # This works around the precautions NamedTemporaryFile is made for...
91 return tmpfile.name
92
93
94def write_config(vty):
95 new_config = vty.enabled_command("write")
Holger Hans Peter Freytherb819b572015-01-31 21:15:06 +010096 print new_config.split(' ')[-1]
97 return 0
Kata7185c62013-04-04 17:31:13 +020098
99
100# The only purpose of this function is to verify a working vty
101def token_vty_command(vty):
102 vty.command("help")
Holger Hans Peter Freyther4e98c262014-07-04 20:43:38 +0200103 return 0
Kata7185c62013-04-04 17:31:13 +0200104
105
106# This may warn about the same doc missing multiple times, by design
107def verify_doc(vty):
108 xml = vty.command("show online-help")
109 split_at = "<command"
110 all_errs = []
111 for command in xml.split(split_at):
112 if "(null)" in command:
113 lines = command.split("\n")
114 cmd_line = split_at + lines[0]
115 err_lines = []
116 for line in lines:
117 if '(null)' in line:
118 err_lines.append(line)
119
120 all_errs.append(err_lines)
121
122 print >> sys.stderr, \
123 "Documentation error (missing docs): \n%s\n%s\n" % (
124 cmd_line, '\n'.join(err_lines))
125
126 return (len(all_errs), all_errs)
127
128
129# Skip testing the configurations of anything that hasn't been compiled
130def app_exists(app_desc):
Max5f4567b2016-03-30 14:58:17 +0200131 cmd = app_desc[1].split(' ')[0]
Kata7185c62013-04-04 17:31:13 +0200132 return os.path.exists(cmd)
133
134
135def remove_tmpdir(tmpdir):
136 files = os.listdir(tmpdir)
137 for f in files:
138 os.unlink(os.path.join(tmpdir, f))
139 os.rmdir(tmpdir)
140
141
Maxd401cc12016-03-30 14:58:16 +0200142def check_configs_tested(basedir, app_configs, ignore_configs):
Kata7185c62013-04-04 17:31:13 +0200143 configs = []
144 for root, dirs, files in os.walk(basedir):
145 for f in files:
Maxd401cc12016-03-30 14:58:16 +0200146 if f.endswith(".cfg") and f not in ignore_configs:
Kata7185c62013-04-04 17:31:13 +0200147 configs.append(os.path.join(root, f))
148 for config in configs:
149 found = False
150 for app in app_configs:
151 if config in app_configs[app]:
152 found = True
153 if not found:
154 print >> sys.stderr, "Warning: %s is not being tested" % config
155
156
157def test_all_apps(apps, app_configs, tmpdir="writtenconfig", verbose=True,
Maxd401cc12016-03-30 14:58:16 +0200158 confpath=".", rmtmp=False, ignore_configs=[]):
159 check_configs_tested("doc/examples/", app_configs, ignore_configs)
Kata7185c62013-04-04 17:31:13 +0200160 errors = 0
161 for app in apps:
162 if not app_exists(app):
163 print >> sys.stderr, "Skipping app %s (not found)" % app[1]
164 continue
165
166 configs = app_configs[app[3]]
167 for config in configs:
Kat0248d3b2013-04-05 20:19:17 +0200168 config = os.path.join(confpath, config)
Kata7185c62013-04-04 17:31:13 +0200169 errors |= test_config(app, config, tmpdir, verbose)
170
Kat0248d3b2013-04-05 20:19:17 +0200171 if rmtmp or not errors:
Kata7185c62013-04-04 17:31:13 +0200172 remove_tmpdir(tmpdir)
173
174 return errors
175
176
177if __name__ == '__main__':
178 import argparse
179
180 confpath = "."
Kat0248d3b2013-04-05 20:19:17 +0200181 wordir = "."
Kata7185c62013-04-04 17:31:13 +0200182
183 parser = argparse.ArgumentParser()
184 parser.add_argument("--e1nitb", action="store_true", dest="e1nitb")
185 parser.add_argument("-v", "--verbose", dest="verbose",
186 action="store_true", help="verbose mode")
187 parser.add_argument("-p", "--pythonconfpath", dest="p",
188 help="searchpath for config")
Kat0248d3b2013-04-05 20:19:17 +0200189 parser.add_argument("-w", "--workdir", dest="w",
190 help="Working directory to run in")
191
Kata7185c62013-04-04 17:31:13 +0200192 args = parser.parse_args()
193
194 if args.p:
195 confpath = args.p
196
Kat0248d3b2013-04-05 20:19:17 +0200197 if args.w:
198 workdir = args.w
199
Kat0270be42013-04-05 21:34:52 +0200200 osmoappdesc = osmoutil.importappconf_or_quit(confpath, "osmoappdesc",
201 args.p)
Kata7185c62013-04-04 17:31:13 +0200202
203 apps = osmoappdesc.apps
204 configs = osmoappdesc.app_configs
Maxd401cc12016-03-30 14:58:16 +0200205 ignores = getattr(osmoappdesc, 'ignore_configs', [])
Kata7185c62013-04-04 17:31:13 +0200206
207 if args.e1nitb:
208 configs['nitb'].extend(osmoappdesc.nitb_e1_configs)
209
Kat0248d3b2013-04-05 20:19:17 +0200210 os.chdir(workdir)
Maxd401cc12016-03-30 14:58:16 +0200211 sys.exit(test_all_apps(apps, configs, ignore_configs=ignores,
212 confpath=confpath, verbose=args.verbose))