[9bd2edf] | 1 | /* |
---|
| 2 | * This file is part of libtrace |
---|
| 3 | * |
---|
| 4 | * Copyright (c) 2004 The University of Waikato, Hamilton, New Zealand. |
---|
| 5 | * Authors: Daniel Lawson |
---|
| 6 | * Perry Lorier |
---|
| 7 | * |
---|
| 8 | * All rights reserved. |
---|
| 9 | * |
---|
| 10 | * This code has been developed by the University of Waikato WAND |
---|
| 11 | * research group. For further information please see http://www.wand.net.nz/ |
---|
| 12 | * |
---|
| 13 | * libtrace is free software; you can redistribute it and/or modify |
---|
| 14 | * it under the terms of the GNU General Public License as published by |
---|
| 15 | * the Free Software Foundation; either version 2 of the License, or |
---|
| 16 | * (at your option) any later version. |
---|
| 17 | * |
---|
| 18 | * libtrace is distributed in the hope that it will be useful, |
---|
| 19 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 20 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 21 | * GNU General Public License for more details. |
---|
| 22 | * |
---|
| 23 | * You should have received a copy of the GNU General Public License |
---|
| 24 | * along with libtrace; if not, write to the Free Software |
---|
| 25 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
| 26 | * |
---|
| 27 | * $Id: test-rtclient.c,v 1.2 2006/02/27 03:41:12 perry Exp $ |
---|
| 28 | * |
---|
| 29 | */ |
---|
| 30 | #include <libtrace.h> |
---|
| 31 | #include <assert.h> |
---|
| 32 | |
---|
| 33 | void test_forgotten_wronly() |
---|
| 34 | { |
---|
| 35 | libtrace_out_t *out; |
---|
| 36 | libtrace_t *trace; |
---|
| 37 | libtrace_packet_t *packet; |
---|
| 38 | int err; |
---|
| 39 | int zero = 0; |
---|
| 40 | |
---|
| 41 | out = trace_create_output("pcapfile:traces/100_packets_out.pcap"); |
---|
| 42 | assert(out); |
---|
| 43 | assert (!trace_is_err_output(out)); |
---|
| 44 | /* Note: no WRONLY/RDWR */ |
---|
| 45 | err = trace_config_output(out,TRACE_OPTION_OUTPUT_FILEFLAGS,&zero); |
---|
| 46 | assert(err==0); |
---|
| 47 | assert(!trace_is_err_output(out)); |
---|
| 48 | |
---|
| 49 | err = trace_start_output(out); |
---|
| 50 | assert(err == 0); |
---|
| 51 | assert(!trace_is_err_output(out)); |
---|
| 52 | |
---|
| 53 | trace = trace_create("pcapfile:traces/100_packets.pcap"); |
---|
| 54 | assert(trace); |
---|
| 55 | assert(!trace_is_err(trace)); |
---|
| 56 | |
---|
| 57 | err = trace_start(trace); |
---|
| 58 | assert(!trace_is_err(trace)); |
---|
| 59 | assert(err == 0); |
---|
| 60 | |
---|
| 61 | packet = trace_create_packet(); |
---|
| 62 | assert(packet); |
---|
| 63 | |
---|
| 64 | err = trace_read_packet(trace, packet); |
---|
| 65 | assert(err>0); |
---|
| 66 | |
---|
| 67 | err = trace_write_packet(out,packet); |
---|
| 68 | assert(err == -1); /* Should fail */ |
---|
| 69 | assert(trace_is_err_output(out)); |
---|
| 70 | |
---|
| 71 | trace_destroy_output(out); |
---|
| 72 | trace_destroy_packet(packet); |
---|
| 73 | trace_destroy(trace); |
---|
| 74 | } |
---|
| 75 | |
---|
| 76 | int main(int argc, char *argv[]) |
---|
| 77 | { |
---|
| 78 | test_forgotten_wronly(); |
---|
| 79 | |
---|
| 80 | return 0; |
---|
| 81 | } |
---|