summaryrefslogtreecommitdiff
path: root/tests/mpz/t-export.c
blob: 7592c1994c9c8495d62989c0a9c431cee48cab7f (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
/* Test mpz_export.

Copyright 2002 Free Software Foundation, Inc.

This file is part of the GNU MP Library.

The GNU MP Library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or (at your
option) any later version.

The GNU MP Library is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
License for more details.

You should have received a copy of the GNU Lesser General Public License
along with the GNU MP Library; see the file COPYING.LIB.  If not, write to
the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
MA 02111-1307, USA. */

#include <stdio.h>
#include <stdlib.h>
#include "gmp.h"
#include "gmp-impl.h"
#include "tests.h"


void
check_data (void)
{
  static const struct {
    const char  *src;
    size_t      want_count;
    int         order;
    size_t      size;
    int         endian;
    int         nail;
    char        want_data[64];

  } data[] = {

    { "0", 0,1, 1,1, 0 },
    { "0", 0,1, 2,1, 0 },
    { "0", 0,1, 3,1, 0 },

    { "0x12345678", 4,1,  1,1, 0, { 0x12, 0x34, 0x56, 0x78 } },
    { "0x12345678", 1,1,  4,1, 0, { 0x12, 0x34, 0x56, 0x78 } },
    { "0x12345678", 1,-1, 4,1, 0, { 0x12, 0x34, 0x56, 0x78 } },

    { "0x12345678", 4,-1, 1,-1, 0, { 0x78, 0x56, 0x34, 0x12 } },
    { "0x12345678", 1,1,  4,-1, 0, { 0x78, 0x56, 0x34, 0x12 } },
    { "0x12345678", 1,-1, 4,-1, 0, { 0x78, 0x56, 0x34, 0x12 } },

    { "0x15", 5,1,  1,1, 7, { 0x01, 0x00, 0x01, 0x00, 0x01 } },

    { "0x1FFFFFFFFFFF", 3,1,  2,1,   1, { 0x7F,0xFF, 0x7F,0xFF, 0x7F,0xFF } },
    { "0x1FFFFFFFFFFF", 3,1,  2,-1,  1, { 0xFF,0x7F, 0xFF,0x7F, 0xFF,0x7F } },
    { "0x7",            3,1,  2,1,  15, { 0x00,0x01, 0x00,0x01, 0x00,0x01 } },
    { "0x7",            3,1,  2,-1, 15, { 0x01,0x00, 0x01,0x00, 0x01,0x00 } },

    { "0x24", 3,1,  2,1,  14, { 0x00,0x02, 0x00,0x01, 0x00,0x00 } },
    { "0x24", 3,1,  2,-1, 14, { 0x02,0x00, 0x01,0x00, 0x00,0x00 } },
    { "0x24", 3,-1, 2,-1, 14, { 0x00,0x00, 0x01,0x00, 0x02,0x00 } },
    { "0x24", 3,-1, 2,1,  14, { 0x00,0x00, 0x00,0x01, 0x00,0x02 } },

    { "0x123456789ABC", 3,1,  2,1,  0, { 0x12,0x34, 0x56,0x78, 0x9A,0xBC } },
    { "0x123456789ABC", 3,-1, 2,1,  0, { 0x9A,0xBC, 0x56,0x78, 0x12,0x34 } },
    { "0x123456789ABC", 3,1,  2,-1, 0, { 0x34,0x12, 0x78,0x56, 0xBC,0x9A } },
    { "0x123456789ABC", 3,-1, 2,-1, 0, { 0xBC,0x9A, 0x78,0x56, 0x34,0x12 } },

    { "0x112233445566778899AABBCC", 3,1,  4,1,  0,
      { 0x11,0x22,0x33,0x44, 0x55,0x66,0x77,0x88, 0x99,0xAA,0xBB,0xCC } },
    { "0x112233445566778899AABBCC", 3,-1, 4,1,  0,
      { 0x99,0xAA,0xBB,0xCC, 0x55,0x66,0x77,0x88, 0x11,0x22,0x33,0x44 } },
    { "0x112233445566778899AABBCC", 3,1,  4,-1, 0,
      { 0x44,0x33,0x22,0x11, 0x88,0x77,0x66,0x55, 0xCC,0xBB,0xAA,0x99 } },
    { "0x112233445566778899AABBCC", 3,-1, 4,-1, 0,
      { 0xCC,0xBB,0xAA,0x99, 0x88,0x77,0x66,0x55, 0x44,0x33,0x22,0x11 } },

    { "0x100120023003400450056006700780089009A00AB00BC00C", 3,1,  8,1,  0,
      { 0x10,0x01,0x20,0x02,0x30,0x03,0x40,0x04,
        0x50,0x05,0x60,0x06,0x70,0x07,0x80,0x08,
        0x90,0x09,0xA0,0x0A,0xB0,0x0B,0xC0,0x0C } },
    { "0x100120023003400450056006700780089009A00AB00BC00C", 3,-1, 8,1,  0,
      { 0x90,0x09,0xA0,0x0A,0xB0,0x0B,0xC0,0x0C,
        0x50,0x05,0x60,0x06,0x70,0x07,0x80,0x08,
        0x10,0x01,0x20,0x02,0x30,0x03,0x40,0x04 } },
    { "0x100120023003400450056006700780089009A00AB00BC00C", 3,1,  8,-1, 0,
      { 0x04,0x40,0x03,0x30,0x02,0x20,0x01,0x10,
        0x08,0x80,0x07,0x70,0x06,0x60,0x05,0x50,
        0x0C,0xC0,0x0B,0xB0,0x0A,0xA0,0x09,0x90 } },
    { "0x100120023003400450056006700780089009A00AB00BC00C", 3,-1, 8,-1, 0,
      { 0x0C,0xC0,0x0B,0xB0,0x0A,0xA0,0x09,0x90,
        0x08,0x80,0x07,0x70,0x06,0x60,0x05,0x50,
        0x04,0x40,0x03,0x30,0x02,0x20,0x01,0x10 } },
  };

  char    buf[sizeof(data[0].src) + sizeof (mp_limb_t) + 128];
  char    *got_data;
  void    *ret;
  size_t  align, got_count, j;
  int     i, error = 0;
  mpz_t   src;

  mpz_init (src);

  for (i = 0; i < numberof (data); i++)
    {
      for (align = 0; align < sizeof (mp_limb_t); align++)
        {
          mpz_set_str_or_abort (src, data[i].src, 0);
          MPZ_CHECK_FORMAT (src);
          got_data = buf + align;

          ASSERT_ALWAYS (data[i].want_count * data[i].size + align
                         <= sizeof (buf));

          memset (got_data, '\0', data[i].want_count * data[i].size);
          ret = mpz_export (got_data, &got_count, data[i].order,
                            data[i].size, data[i].endian, data[i].nail, src);

          if (ret != got_data)
            {
              printf ("return doesn't equal given pointer\n");
              error = 1;
            }
          if (got_count != data[i].want_count)
            {
              printf ("wrong count\n");
              error = 1;
            }
          if (memcmp (got_data, data[i].want_data, got_count * data[i].size) != 0)
            {
              printf ("wrong result data\n");
              error = 1;
            }
          if (error)
            {
              printf ("    at data[%d]\n", i);
              printf ("    src \"%s\"\n", data[i].src);
              mpz_trace ("    src", src);
              printf ("    order=%d  size=%u endian=%d nail=%u\n",
                      data[i].order,
                      data[i].size, data[i].endian, data[i].nail);
              printf ("    want count %u\n", data[i].want_count);
              printf ("    got count  %u\n", got_count);
              printf ("    want");
              for (j = 0; j < data[i].want_count*data[i].size; j++)
                printf (" 0x%02X,", (unsigned) (unsigned char) data[i].want_data[j]);
              printf ("\n");
              printf ("    got ");
              for (j = 0; j < got_count*data[i].size; j++)
                printf (" 0x%02X,", (unsigned) (unsigned char) got_data[j]);
              printf ("\n");
              abort ();
            }
        }
    }
  mpz_clear (src);
}


int
main (void)
{
  tests_start ();

  mp_trace_base = -16;
  check_data ();

  tests_end ();
  exit (0);
}