summaryrefslogtreecommitdiffstats
path: root/contrib/sendmail/libsm/t-smstdio.c
blob: 3bad1c1b1556090432fcff758dbd575b15d4d0a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
 * Copyright (c) 2000-2001 Sendmail, Inc. and its suppliers.
 *	All rights reserved.
 *
 * By using this file, you agree to the terms and conditions set
 * forth in the LICENSE file which can be found at the top level of
 * the sendmail distribution.
 */

#include <sm/gen.h>
SM_IDSTR(id, "@(#)$Id: t-smstdio.c,v 1.11 2001/09/11 04:04:49 gshapiro Exp $")

#include <sm/io.h>
#include <sm/string.h>
#include <sm/test.h>

int
main(argc, argv)
	int argc;
	char **argv;
{
	FILE *stream;
	SM_FILE_T *fp;
	char buf[128];
	size_t n;
	static char testmsg[] = "hello, world\n";

	sm_test_begin(argc, argv,
		"test sm_io_stdioopen, smiostdin, smiostdout");

	stream = fopen("t-smstdio.1", "w");
	SM_TEST(stream != NULL);

	fp = sm_io_stdioopen(stream, "w");
	SM_TEST(fp != NULL);

	(void) sm_io_fprintf(fp, SM_TIME_DEFAULT, "%s", testmsg);
	sm_io_close(fp, SM_TIME_DEFAULT);

#if 0
	/*
	**  stream should now be closed.  This is a tricky way to test
	**  if it is still open.  Alas, it core dumps on Linux.
	*/

	fprintf(stream, "oops! stream is still open!\n");
	fclose(stream);
#endif

	stream = fopen("t-smstdio.1", "r");
	SM_TEST(stream != NULL);

	fp = sm_io_stdioopen(stream, "r");
	SM_TEST(fp != NULL);

	n = sm_io_read(fp, SM_TIME_DEFAULT, buf, sizeof(buf));
	if (SM_TEST(n == strlen(testmsg)))
	{
		buf[n] = '\0';
		SM_TEST(strcmp(buf, testmsg) == 0);
	}

#if 0

	/*
	**  Copy smiostdin to smiostdout
	**  gotta think some more about how to test smiostdin and smiostdout
	*/

	while ((c = sm_io_getc(smiostdin)) != SM_IO_EOF)
		sm_io_putc(smiostdout, c);
#endif

	return sm_test_end();
}
OpenPOWER on IntegriCloud