xref: /netbsd-src/crypto/external/bsd/libsaslc/dist/test/t_error.c (revision beea8b97d4a59f9d0f17f6dc5a9e6bda59e0bc43)
1*beea8b97Schristos /* $NetBSD: t_error.c,v 1.4 2011/02/12 23:21:33 christos Exp $ */
2231558cbSagc 
3231558cbSagc /* Copyright (c) 2010 The NetBSD Foundation, Inc.
4231558cbSagc  * All rights reserved.
5231558cbSagc  *
6231558cbSagc  * This code is derived from software contributed to The NetBSD Foundation
7231558cbSagc  * by Mateusz Kocielski.
8231558cbSagc  *
9231558cbSagc  * Redistribution and use in source and binary forms, with or without
10231558cbSagc  * modification, are permitted provided that the following conditions
11231558cbSagc  * are met:
12231558cbSagc  * 1. Redistributions of source code must retain the above copyright
13231558cbSagc  *    notice, this list of conditions and the following disclaimer.
14231558cbSagc  * 2. Redistributions in binary form must reproduce the above copyright
15231558cbSagc  *    notice, this list of conditions and the following disclaimer in the
16231558cbSagc  *    documentation and/or other materials provided with the distribution.
17231558cbSagc  * 3. All advertising materials mentioning features or use of this software
18231558cbSagc  *    must display the following acknowledgement:
19231558cbSagc  *  	  This product includes software developed by the NetBSD
20231558cbSagc  *  	  Foundation, Inc. and its contributors.
21231558cbSagc  * 4. Neither the name of The NetBSD Foundation nor the names of its
22231558cbSagc  *    contributors may be used to endorse or promote products derived
23231558cbSagc  *    from this software without specific prior written permission.
24231558cbSagc  *
25231558cbSagc  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
26231558cbSagc  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
27231558cbSagc  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28231558cbSagc  * PURPOSE ARE DISCLAIMED.	IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
29231558cbSagc  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30231558cbSagc  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31231558cbSagc  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32231558cbSagc  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33231558cbSagc  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34231558cbSagc  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35231558cbSagc  * POSSIBILITY OF SUCH DAMAGE.
36231558cbSagc  */
3719c14409Schristos #include <sys/cdefs.h>
38*beea8b97Schristos __RCSID("$NetBSD: t_error.c,v 1.4 2011/02/12 23:21:33 christos Exp $");
39231558cbSagc 
40231558cbSagc #include <atf-c.h>
41231558cbSagc #include <saslc.h>
42*beea8b97Schristos #include <stdio.h>
43231558cbSagc #include <string.h>
4419c14409Schristos 
45231558cbSagc #include "error.h"
4619c14409Schristos #include "saslc_private.h"
4719c14409Schristos 
48231558cbSagc ATF_TC(t_saslc__error);
ATF_TC_HEAD(t_saslc__error,tc)49231558cbSagc ATF_TC_HEAD(t_saslc__error, tc)
50231558cbSagc {
5119c14409Schristos 
52231558cbSagc 	atf_tc_set_md_var(tc, "descr", "saslc__error_*() tests");
53231558cbSagc }
ATF_TC_BODY(t_saslc__error,tc)54231558cbSagc ATF_TC_BODY(t_saslc__error, tc)
55231558cbSagc {
56231558cbSagc 	saslc_t *ctx;
57231558cbSagc 
58231558cbSagc 	ATF_REQUIRE(ctx = saslc_alloc());
5919c14409Schristos 	ATF_REQUIRE_EQ(saslc_init(ctx, NULL, NULL), 0);
60231558cbSagc 	saslc__error_set(ERR(ctx), ERROR_GENERAL, "test");
61231558cbSagc 	ATF_CHECK_EQ(saslc__error_get_errno(ERR(ctx)), ERROR_GENERAL);
62231558cbSagc 	ATF_CHECK_STREQ(saslc_strerror(ctx), "test");
63231558cbSagc 	saslc__error_set_errno(ERR(ctx), ERROR_NOMEM);
64231558cbSagc 	ATF_CHECK_STREQ(saslc_strerror(ctx), "no memory available");
65*beea8b97Schristos 	ATF_REQUIRE_EQ(saslc_end(ctx), 0);
66231558cbSagc }
67231558cbSagc 
ATF_TP_ADD_TCS(tp)68231558cbSagc ATF_TP_ADD_TCS(tp)
69231558cbSagc {
7019c14409Schristos 
71231558cbSagc 	ATF_TP_ADD_TC(tp, t_saslc__error);
72231558cbSagc 	return atf_no_error();
73231558cbSagc }
74