]> git.proxmox.com Git - mirror_frr.git/blame - tests/common-cli.c
tests: remove dejagnu
[mirror_frr.git] / tests / common-cli.c
CommitLineData
2bb57c68
DL
1/*
2 * generic CLI test helper functions
3 *
4 * Copyright (C) 2015 by David Lamparter,
5 * for Open Source Routing / NetDEF, Inc.
6 *
7 * Quagga is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2, or (at your option) any
10 * later version.
11 *
12 * Quagga is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with Quagga; see the file COPYING. If not, write to the Free
19 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20 * 02111-1307, USA.
21 */
22
23#include <zebra.h>
24
25#include "thread.h"
26#include "vty.h"
27#include "command.h"
28#include "memory.h"
fc7948fa 29#include "memory_vty.h"
2bb57c68
DL
30#include "log.h"
31
32#include "common-cli.h"
33
34struct thread_master *master;
35
36int dump_args(struct vty *vty, const char *descr,
6a23719c 37 int argc, struct cmd_token *argv[])
2bb57c68
DL
38{
39 int i;
40 vty_out (vty, "%s with %d args.%s", descr, argc, VTY_NEWLINE);
41 for (i = 0; i < argc; i++)
42 {
6a23719c 43 vty_out (vty, "[%02d]: %s%s", i, argv[i]->arg, VTY_NEWLINE);
2bb57c68
DL
44 }
45
46 return CMD_SUCCESS;
47}
48
49static void vty_do_exit(void)
50{
51 printf ("\nend.\n");
3a8b1ac0
DL
52 cmd_terminate ();
53 vty_terminate ();
54 thread_master_free (master);
55 closezlog (zlog_default);
56
57 log_memstats_stderr ("testcli");
2bb57c68
DL
58 exit (0);
59}
60
61/* main routine. */
62int
63main (int argc, char **argv)
64{
65 struct thread thread;
66
67 /* Set umask before anything for security */
68 umask (0027);
69
70 /* master init. */
71 master = thread_master_create ();
72
34be9094 73 zlog_default = openzlog ("common-cli", ZLOG_NONE, 0,
2bb57c68
DL
74 LOG_CONS|LOG_NDELAY|LOG_PID, LOG_DAEMON);
75 zlog_set_level (NULL, ZLOG_DEST_SYSLOG, ZLOG_DISABLED);
76 zlog_set_level (NULL, ZLOG_DEST_STDOUT, ZLOG_DISABLED);
77 zlog_set_level (NULL, ZLOG_DEST_MONITOR, LOG_DEBUG);
78
79 /* Library inits. */
80 cmd_init (1);
bff9c3e9 81 cmd_hostname_set ("test");
2bb57c68
DL
82
83 vty_init (master);
84 memory_init ();
85
86 test_init ();
87
88 vty_stdio (vty_do_exit);
89
90 /* Fetch next active thread. */
91 while (thread_fetch (master, &thread))
92 thread_call (&thread);
93
94 /* Not reached. */
95 exit (0);
96}
97