summaryrefslogtreecommitdiff
path: root/storage/archive/archive_test.c
blob: 043d743f1c99e419ffd9d275bd4230605959da79 (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
#include "azlib.h"
#include <stdio.h>

#define TEST_STRING "This is a test"
#define BUFFER_LEN 1024

int main(int argc, char *argv[])
{
  int ret;
  azio_stream foo, foo1;
  char buffer[BUFFER_LEN];

  MY_INIT(argv[0]);

  if (!(ret= azopen(&foo, "test", O_CREAT|O_WRONLY|O_TRUNC|O_BINARY)))
  {
    printf("Could not create test file\n");
    return 0;
  }
  azwrite(&foo, TEST_STRING, sizeof(TEST_STRING));
  azflush(&foo, Z_FINISH);

  if (!(ret= azopen(&foo1, "test", O_RDONLY|O_BINARY)))
  {
    printf("Could not open test file\n");
    return 0;
  }
  ret= azread(&foo1, buffer, BUFFER_LEN);
  printf("Read %d bytes\n", ret);
  printf("%s\n", buffer);
  azrewind(&foo1);
  azclose(&foo);
  if (!(ret= azopen(&foo, "test", O_APPEND|O_WRONLY|O_BINARY)))
  {
    printf("Could not create test file\n");
    return 0;
  }
  azwrite(&foo, TEST_STRING, sizeof(TEST_STRING));
  azflush(&foo, Z_FINISH);
  ret= azread(&foo1, buffer, BUFFER_LEN);
  printf("Read %d bytes\n", ret);
  printf("%s\n", buffer);
  azclose(&foo);
  azclose(&foo1);

  /* unlink("test"); */
  return 0;
}