freebsd-dev/contrib/libxo/tests/core/test_11.c
Phil Shafer 76afb20c58 Import libxo-1.3.0:
- move from "oxtradoc" to RST/Sphinx documentation
- new "csv" encoder, which allows path and leaf lists
- address warnings from PVS-Stdio tool
- add "xolint" detected errors to the documentation
2019-11-07 03:57:04 +00:00

111 lines
2.7 KiB
C

/*
* Copyright (c) 2014, Juniper Networks, Inc.
* All rights reserved.
* This SOFTWARE is licensed under the LICENSE provided in the
* ../Copyright file. By downloading, installing, copying, or otherwise
* using the SOFTWARE, you agree to be bound by the terms of that
* LICENSE.
* Phil Shafer, July 2014
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>
#include <time.h>
#include <ctype.h>
#include <syslog.h>
#include "xo.h"
#include "xo_encoder.h"
void
test_syslog_open (void)
{
printf("syslog open\n");
}
void
test_syslog_close (void)
{
printf("syslog close\n");
}
void
test_syslog_send (const char *full_msg, const char *v0_hdr,
const char *text_only)
{
printf("{{%s}}\n{{%s}}\n{{%s}}\n\n", full_msg, v0_hdr, text_only);
}
int
main (int argc, char **argv)
{
int unit_test = 1;
int fire = 0;
const char *tzone = "EST";
argc = xo_parse_args(argc, argv);
if (argc < 0)
return 1;
for (argc = 1; argv[argc]; argc++) {
if (xo_streq(argv[argc], "full"))
unit_test = 0;
else if (xo_streq(argv[argc], "fire"))
fire = 1;
else if (xo_streq(argv[argc], "tz"))
tzone = argv[++argc];
}
setenv("TZ", tzone, 1);
tzset();
if (!fire) {
xo_set_syslog_handler(test_syslog_open, test_syslog_send,
test_syslog_close);
}
if (unit_test) {
xo_set_unit_test_mode(1);
xo_open_log("test-program", LOG_PERROR, 0);
}
xo_set_version("3.1.4");
xo_set_syslog_enterprise_id(42); /* SunOs */
xo_open_container_h(NULL, "top");
xo_syslog(LOG_INFO | LOG_KERN, "animal-status",
"The {:animal} is {:state}", "snake", "loose");
xo_syslog(LOG_INFO | LOG_MAIL, "animal-consumed",
"My {:animal} ate your {:pet}", "snake", "hamster");
xo_syslog(LOG_NOTICE | LOG_DAEMON, "animal-talk",
"{:count/%d} {:animal} said {:quote}", 1, "owl", "\"e=m\\c[2]\"");
/*
<165>1 2003-10-11T22:14:15.003Z mymachine.example.com
evntslog - ID47 [exampleSDID@32473 iut="3" eventSource=
"Application" eventID="1011"] BOMAn application
event log entry...
This example is modeled after Example 1. However, this time it
contains STRUCTURED-DATA, a single element with the value
"[exampleSDID@32473 iut="3" eventSource="Application"
eventID="1011"]". The MSG itself is "An application event log
entry..." The BOM at the beginning of MSG indicates UTF-8 encoding.
*/
xo_set_syslog_enterprise_id(32473);
xo_syslog(LOG_LOCAL4 | LOG_NOTICE, "ID47",
"{e:iut/%u}An {:event-source} {:event-id/%u} log entry",
3, "application", 1011);
xo_close_container_h(NULL, "top");
xo_finish();
return 0;
}