Skip to content

Commit

Permalink
tests: Add further tests for mpz code.
Browse files Browse the repository at this point in the history
  • Loading branch information
dpgeorge committed Oct 1, 2015
1 parent 2f4e851 commit a81539d
Show file tree
Hide file tree
Showing 9 changed files with 63 additions and 0 deletions.
1 change: 1 addition & 0 deletions tests/basics/builtin_hash.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
print(hash(True))
print({():1}) # hash tuple
print({1 << 66:1}) # hash big int
print({-(1 << 66):2}) # hash negative big int
print(hash in {hash:1}) # hash function

try:
Expand Down
13 changes: 13 additions & 0 deletions tests/basics/int_big_error.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,16 @@
1 in i
except TypeError:
print("TypeError")

# overflow because rhs of >> is being converted to machine int
try:
1 >> i
except OverflowError:
print('OverflowError')

# to test conversion of negative mpz to machine int
# (we know << will convert to machine int, even though it fails to do the shift)
try:
i << (-(i >> 40))
except ValueError:
print('ValueError')
3 changes: 3 additions & 0 deletions tests/basics/int_big_lshift.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,6 @@
print(-100000000000000000000000000002 >> i)
print(-100000000000000000000000000003 >> i)
print(-100000000000000000000000000004 >> i)

# shl by zero
print((1<<70) << 0)
8 changes: 8 additions & 0 deletions tests/basics/int_big_pow.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# test bignum power

i = 1 << 65

print(0 ** i)
print(i ** 0)
print(i ** 1)
print(i ** 2)
3 changes: 3 additions & 0 deletions tests/basics/int_big_rshift.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
i = 123456789012345678901234567890
print(i >> 1)
print(i >> 1000)

# result needs rounding up
print(-(1<<70) >> 80)
3 changes: 3 additions & 0 deletions tests/basics/struct1.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,11 @@

# long long ints
print(struct.pack("<Q", 2**64 - 1))
print(struct.pack(">Q", 2**64 - 1))
print(struct.pack("<Q", 0xffffffffffffffff))
print(struct.pack(">Q", 0xffffffffffffffff))
print(struct.pack("<q", -1))
print(struct.pack(">q", -1))
print(struct.pack("<Q", 1234567890123456789))
print(struct.pack("<q", -1234567890123456789))
print(struct.pack(">Q", 1234567890123456789))
Expand Down
3 changes: 3 additions & 0 deletions tests/float/int_big_float.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
# convert bignum to float on rhs
print("%.5g" % (2.0 * i))

# negative bignum as float
print("%.5g" % float(-i))

# this should convert to float
print("%.5g" % (i / 5))

Expand Down
5 changes: 5 additions & 0 deletions tests/unix/extra_coverage.py.exp
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,8 @@ ementation
(start=1, stop=2, step=3)
# str
1
# mpz
1
12345678
0
0
24 changes: 24 additions & 0 deletions unix/coverage.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#include "py/obj.h"
#include "py/runtime.h"
#include "py/repl.h"
#include "py/mpz.h"

#if defined(MICROPY_UNIX_COVERAGE)

Expand Down Expand Up @@ -83,6 +84,29 @@ STATIC mp_obj_t extra_coverage(void) {
printf("%d\n", MP_OBJ_IS_QSTR(mp_obj_str_intern(mp_obj_new_str("intern me", 9, false))));
}

// mpz
{
printf("# mpz\n");

mp_uint_t value;
mpz_t mpz;
mpz_init_zero(&mpz);

// mpz_as_uint_checked, with success
mpz_set_from_int(&mpz, 12345678);
printf("%d\n", mpz_as_uint_checked(&mpz, &value));
printf("%d\n", (int)value);

// mpz_as_uint_checked, with negative arg
mpz_set_from_int(&mpz, -1);
printf("%d\n", mpz_as_uint_checked(&mpz, &value));

// mpz_as_uint_checked, with overflowing arg
mpz_set_from_int(&mpz, 1);
mpz_shl_inpl(&mpz, &mpz, 70);
printf("%d\n", mpz_as_uint_checked(&mpz, &value));
}

return mp_const_none;
}
MP_DEFINE_CONST_FUN_OBJ_0(extra_coverage_obj, extra_coverage);
Expand Down

0 comments on commit a81539d

Please sign in to comment.