tests: Replace umodule with module everywhere.
This work was funded through GitHub Sponsors. Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
This commit is contained in:
parent
5e50975a6d
commit
4216bc7d13
|
@ -356,19 +356,19 @@ STATIC mp_obj_t extra_coverage(void) {
|
||||||
mp_printf(&mp_plat_print, "# repl\n");
|
mp_printf(&mp_plat_print, "# repl\n");
|
||||||
|
|
||||||
const char *str;
|
const char *str;
|
||||||
size_t len = mp_repl_autocomplete("__n", 3, &mp_plat_print, &str);
|
size_t len = mp_repl_autocomplete("__n", 3, &mp_plat_print, &str); // expect "ame__"
|
||||||
mp_printf(&mp_plat_print, "%.*s\n", (int)len, str);
|
mp_printf(&mp_plat_print, "%.*s\n", (int)len, str);
|
||||||
|
|
||||||
len = mp_repl_autocomplete("i", 1, &mp_plat_print, &str);
|
len = mp_repl_autocomplete("im", 2, &mp_plat_print, &str); // expect "port"
|
||||||
mp_printf(&mp_plat_print, "%.*s\n", (int)len, str);
|
mp_printf(&mp_plat_print, "%.*s\n", (int)len, str);
|
||||||
mp_repl_autocomplete("import ", 7, &mp_plat_print, &str);
|
mp_repl_autocomplete("import ", 7, &mp_plat_print, &str); // expect the list of builtins
|
||||||
len = mp_repl_autocomplete("import ut", 9, &mp_plat_print, &str);
|
len = mp_repl_autocomplete("import ti", 9, &mp_plat_print, &str); // expect "me"
|
||||||
mp_printf(&mp_plat_print, "%.*s\n", (int)len, str);
|
mp_printf(&mp_plat_print, "%.*s\n", (int)len, str);
|
||||||
mp_repl_autocomplete("import time", 12, &mp_plat_print, &str);
|
mp_repl_autocomplete("import time", 11, &mp_plat_print, &str); // expect "time timeq"
|
||||||
|
|
||||||
mp_store_global(MP_QSTR_sys, mp_import_name(MP_QSTR_sys, mp_const_none, MP_OBJ_NEW_SMALL_INT(0)));
|
mp_store_global(MP_QSTR_sys, mp_import_name(MP_QSTR_sys, mp_const_none, MP_OBJ_NEW_SMALL_INT(0)));
|
||||||
mp_repl_autocomplete("sys.", 4, &mp_plat_print, &str);
|
mp_repl_autocomplete("sys.", 4, &mp_plat_print, &str); // expect dir(sys)
|
||||||
len = mp_repl_autocomplete("sys.impl", 8, &mp_plat_print, &str);
|
len = mp_repl_autocomplete("sys.impl", 8, &mp_plat_print, &str); // expect "ementation"
|
||||||
mp_printf(&mp_plat_print, "%.*s\n", (int)len, str);
|
mp_printf(&mp_plat_print, "%.*s\n", (int)len, str);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,3 @@
|
||||||
try:
|
|
||||||
import uarray as array
|
|
||||||
except ImportError:
|
|
||||||
try:
|
try:
|
||||||
import array
|
import array
|
||||||
except ImportError:
|
except ImportError:
|
||||||
|
|
|
@ -1,7 +1,4 @@
|
||||||
# test array + array
|
# test array + array
|
||||||
try:
|
|
||||||
import uarray as array
|
|
||||||
except ImportError:
|
|
||||||
try:
|
try:
|
||||||
import array
|
import array
|
||||||
except ImportError:
|
except ImportError:
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
# test construction of array.array from different objects
|
# test construction of array.array from different objects
|
||||||
|
|
||||||
try:
|
|
||||||
from uarray import array
|
|
||||||
except ImportError:
|
|
||||||
try:
|
try:
|
||||||
from array import array
|
from array import array
|
||||||
except ImportError:
|
except ImportError:
|
||||||
|
|
|
@ -1,6 +1,3 @@
|
||||||
try:
|
|
||||||
from uarray import array
|
|
||||||
except ImportError:
|
|
||||||
try:
|
try:
|
||||||
from array import array
|
from array import array
|
||||||
except ImportError:
|
except ImportError:
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
# test construction of array.array from different objects
|
# test construction of array.array from different objects
|
||||||
|
|
||||||
try:
|
|
||||||
from uarray import array
|
|
||||||
except ImportError:
|
|
||||||
try:
|
try:
|
||||||
from array import array
|
from array import array
|
||||||
except ImportError:
|
except ImportError:
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
# test array types QqLl that require big-ints
|
# test array types QqLl that require big-ints
|
||||||
|
|
||||||
try:
|
|
||||||
from uarray import array
|
|
||||||
except ImportError:
|
|
||||||
try:
|
try:
|
||||||
from array import array
|
from array import array
|
||||||
except ImportError:
|
except ImportError:
|
||||||
|
|
|
@ -1,7 +1,4 @@
|
||||||
# test MicroPython-specific features of array.array
|
# test MicroPython-specific features of array.array
|
||||||
try:
|
|
||||||
import uarray as array
|
|
||||||
except ImportError:
|
|
||||||
try:
|
try:
|
||||||
import array
|
import array
|
||||||
except ImportError:
|
except ImportError:
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
# test await expression
|
# test await expression
|
||||||
|
|
||||||
try:
|
|
||||||
import usys as sys
|
|
||||||
except ImportError:
|
|
||||||
import sys
|
import sys
|
||||||
if sys.implementation.name == 'micropython':
|
if sys.implementation.name == 'micropython':
|
||||||
# uPy allows normal generators to be awaitables
|
# uPy allows normal generators to be awaitables
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
# test waiting within "async for" __anext__ function
|
# test waiting within "async for" __anext__ function
|
||||||
|
|
||||||
try:
|
|
||||||
import usys as sys
|
|
||||||
except ImportError:
|
|
||||||
import sys
|
import sys
|
||||||
if sys.implementation.name == 'micropython':
|
if sys.implementation.name == 'micropython':
|
||||||
# uPy allows normal generators to be awaitables
|
# uPy allows normal generators to be awaitables
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
# test waiting within async with enter/exit functions
|
# test waiting within async with enter/exit functions
|
||||||
|
|
||||||
try:
|
|
||||||
import usys as sys
|
|
||||||
except ImportError:
|
|
||||||
import sys
|
import sys
|
||||||
if sys.implementation.name == 'micropython':
|
if sys.implementation.name == 'micropython':
|
||||||
# uPy allows normal generators to be awaitables
|
# uPy allows normal generators to be awaitables
|
||||||
|
|
|
@ -1,9 +1,6 @@
|
||||||
# test attrtuple
|
# test attrtuple
|
||||||
# we can't test this type directly so we use sys.implementation object
|
# we can't test this type directly so we use sys.implementation object
|
||||||
|
|
||||||
try:
|
|
||||||
import usys as sys
|
|
||||||
except ImportError:
|
|
||||||
import sys
|
import sys
|
||||||
t = sys.implementation
|
t = sys.implementation
|
||||||
|
|
||||||
|
|
|
@ -7,9 +7,6 @@ print(callable([]))
|
||||||
print(callable("dfsd"))
|
print(callable("dfsd"))
|
||||||
|
|
||||||
# modules should not be callabe
|
# modules should not be callabe
|
||||||
try:
|
|
||||||
import usys as sys
|
|
||||||
except ImportError:
|
|
||||||
import sys
|
import sys
|
||||||
print(callable(sys))
|
print(callable(sys))
|
||||||
|
|
||||||
|
|
|
@ -4,9 +4,6 @@
|
||||||
print('__name__' in dir())
|
print('__name__' in dir())
|
||||||
|
|
||||||
# dir of module
|
# dir of module
|
||||||
try:
|
|
||||||
import usys as sys
|
|
||||||
except ImportError:
|
|
||||||
import sys
|
import sys
|
||||||
print('version' in dir(sys))
|
print('version' in dir(sys))
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,4 @@
|
||||||
# test construction of bytearray from different objects
|
# test construction of bytearray from different objects
|
||||||
try:
|
|
||||||
from uarray import array
|
|
||||||
except ImportError:
|
|
||||||
try:
|
try:
|
||||||
from array import array
|
from array import array
|
||||||
except ImportError:
|
except ImportError:
|
||||||
|
|
|
@ -1,7 +1,4 @@
|
||||||
# test construction of bytearray from different objects
|
# test construction of bytearray from different objects
|
||||||
try:
|
|
||||||
from uarray import array
|
|
||||||
except ImportError:
|
|
||||||
try:
|
try:
|
||||||
from array import array
|
from array import array
|
||||||
except ImportError:
|
except ImportError:
|
||||||
|
|
|
@ -1,7 +1,4 @@
|
||||||
# test bytes + other
|
# test bytes + other
|
||||||
try:
|
|
||||||
import uarray as array
|
|
||||||
except ImportError:
|
|
||||||
try:
|
try:
|
||||||
import array
|
import array
|
||||||
except ImportError:
|
except ImportError:
|
||||||
|
|
|
@ -1,7 +1,4 @@
|
||||||
# test bytes + other
|
# test bytes + other
|
||||||
try:
|
|
||||||
import uarray as array
|
|
||||||
except ImportError:
|
|
||||||
try:
|
try:
|
||||||
import array
|
import array
|
||||||
except ImportError:
|
except ImportError:
|
||||||
|
|
|
@ -1,6 +1,3 @@
|
||||||
try:
|
|
||||||
import uarray as array
|
|
||||||
except ImportError:
|
|
||||||
try:
|
try:
|
||||||
import array
|
import array
|
||||||
except ImportError:
|
except ImportError:
|
||||||
|
|
|
@ -1,7 +1,4 @@
|
||||||
# test construction of bytes from different objects
|
# test construction of bytes from different objects
|
||||||
try:
|
|
||||||
from uarray import array
|
|
||||||
except ImportError:
|
|
||||||
try:
|
try:
|
||||||
from array import array
|
from array import array
|
||||||
except ImportError:
|
except ImportError:
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
# test construction of bytes from different objects
|
# test construction of bytes from different objects
|
||||||
|
|
||||||
try:
|
|
||||||
from uarray import array
|
|
||||||
except ImportError:
|
|
||||||
try:
|
try:
|
||||||
from array import array
|
from array import array
|
||||||
except ImportError:
|
except ImportError:
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
# test using an OrderedDict as the locals to construct a class
|
# test using an OrderedDict as the locals to construct a class
|
||||||
|
|
||||||
try:
|
|
||||||
from ucollections import OrderedDict
|
|
||||||
except ImportError:
|
|
||||||
try:
|
try:
|
||||||
from collections import OrderedDict
|
from collections import OrderedDict
|
||||||
except ImportError:
|
except ImportError:
|
||||||
|
|
|
@ -4,9 +4,6 @@
|
||||||
# which caused class constructor to receive extra argument.
|
# which caused class constructor to receive extra argument.
|
||||||
try:
|
try:
|
||||||
from collections import namedtuple
|
from collections import namedtuple
|
||||||
except ImportError:
|
|
||||||
try:
|
|
||||||
from ucollections import namedtuple
|
|
||||||
except ImportError:
|
except ImportError:
|
||||||
print("SKIP")
|
print("SKIP")
|
||||||
raise SystemExit
|
raise SystemExit
|
||||||
|
|
|
@ -1,7 +1,4 @@
|
||||||
try:
|
try:
|
||||||
try:
|
|
||||||
from ucollections import deque
|
|
||||||
except ImportError:
|
|
||||||
from collections import deque
|
from collections import deque
|
||||||
except ImportError:
|
except ImportError:
|
||||||
print("SKIP")
|
print("SKIP")
|
||||||
|
|
|
@ -1,9 +1,6 @@
|
||||||
# Tests for deques with "check overflow" flag and other extensions
|
# Tests for deques with "check overflow" flag and other extensions
|
||||||
# wrt to CPython.
|
# wrt to CPython.
|
||||||
try:
|
try:
|
||||||
try:
|
|
||||||
from ucollections import deque
|
|
||||||
except ImportError:
|
|
||||||
from collections import deque
|
from collections import deque
|
||||||
except ImportError:
|
except ImportError:
|
||||||
print("SKIP")
|
print("SKIP")
|
||||||
|
|
|
@ -1,48 +1,48 @@
|
||||||
# test that fixed dictionaries cannot be modified
|
# test that fixed dictionaries cannot be modified
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import uerrno
|
import errno
|
||||||
except ImportError:
|
except ImportError:
|
||||||
print("SKIP")
|
print("SKIP")
|
||||||
raise SystemExit
|
raise SystemExit
|
||||||
|
|
||||||
# Save a copy of uerrno.errorcode, so we can check later
|
# Save a copy of errno.errorcode, so we can check later
|
||||||
# that it hasn't been modified.
|
# that it hasn't been modified.
|
||||||
errorcode_copy = uerrno.errorcode.copy()
|
errorcode_copy = errno.errorcode.copy()
|
||||||
|
|
||||||
try:
|
try:
|
||||||
uerrno.errorcode.popitem()
|
errno.errorcode.popitem()
|
||||||
except TypeError:
|
except TypeError:
|
||||||
print("TypeError")
|
print("TypeError")
|
||||||
|
|
||||||
try:
|
try:
|
||||||
uerrno.errorcode.pop(0)
|
errno.errorcode.pop(0)
|
||||||
except TypeError:
|
except TypeError:
|
||||||
print("TypeError")
|
print("TypeError")
|
||||||
|
|
||||||
try:
|
try:
|
||||||
uerrno.errorcode.setdefault(0, 0)
|
errno.errorcode.setdefault(0, 0)
|
||||||
except TypeError:
|
except TypeError:
|
||||||
print("TypeError")
|
print("TypeError")
|
||||||
|
|
||||||
try:
|
try:
|
||||||
uerrno.errorcode.update([(1, 2)])
|
errno.errorcode.update([(1, 2)])
|
||||||
except TypeError:
|
except TypeError:
|
||||||
print("TypeError")
|
print("TypeError")
|
||||||
|
|
||||||
try:
|
try:
|
||||||
del uerrno.errorcode[1]
|
del errno.errorcode[1]
|
||||||
except TypeError:
|
except TypeError:
|
||||||
print("TypeError")
|
print("TypeError")
|
||||||
|
|
||||||
try:
|
try:
|
||||||
uerrno.errorcode[1] = 'foo'
|
errno.errorcode[1] = 'foo'
|
||||||
except TypeError:
|
except TypeError:
|
||||||
print("TypeError")
|
print("TypeError")
|
||||||
|
|
||||||
try:
|
try:
|
||||||
uerrno.errorcode.clear()
|
errno.errorcode.clear()
|
||||||
except TypeError:
|
except TypeError:
|
||||||
print("TypeError")
|
print("TypeError")
|
||||||
|
|
||||||
assert uerrno.errorcode == errorcode_copy
|
assert errno.errorcode == errorcode_copy
|
||||||
|
|
|
@ -1,25 +1,25 @@
|
||||||
# test errno's and uerrno module
|
# test errno's and errno module
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import uerrno
|
import errno
|
||||||
except ImportError:
|
except ImportError:
|
||||||
print("SKIP")
|
print("SKIP")
|
||||||
raise SystemExit
|
raise SystemExit
|
||||||
|
|
||||||
# check that constants exist and are integers
|
# check that constants exist and are integers
|
||||||
print(type(uerrno.EIO))
|
print(type(errno.EIO))
|
||||||
|
|
||||||
# check that errors are rendered in a nice way
|
# check that errors are rendered in a nice way
|
||||||
msg = str(OSError(uerrno.EIO))
|
msg = str(OSError(errno.EIO))
|
||||||
print(msg[:7], msg[-5:])
|
print(msg[:7], msg[-5:])
|
||||||
msg = str(OSError(uerrno.EIO, "details"))
|
msg = str(OSError(errno.EIO, "details"))
|
||||||
print(msg[:7], msg[-14:])
|
print(msg[:7], msg[-14:])
|
||||||
msg = str(OSError(uerrno.EIO, "details", "more details"))
|
msg = str(OSError(errno.EIO, "details", "more details"))
|
||||||
print(msg[:1], msg[-28:])
|
print(msg[:1], msg[-28:])
|
||||||
|
|
||||||
# check that unknown errno is still rendered
|
# check that unknown errno is still rendered
|
||||||
print(str(OSError(9999)))
|
print(str(OSError(9999)))
|
||||||
|
|
||||||
# this tests a failed constant lookup in errno
|
# this tests a failed constant lookup in errno
|
||||||
errno = uerrno
|
errno = errno
|
||||||
print(errno.__name__)
|
print(errno.__name__)
|
||||||
|
|
|
@ -3,4 +3,4 @@
|
||||||
[Errno ] EIO: details
|
[Errno ] EIO: details
|
||||||
( , 'details', 'more details')
|
( , 'details', 'more details')
|
||||||
9999
|
9999
|
||||||
uerrno
|
errno
|
||||||
|
|
|
@ -105,9 +105,6 @@ x = 4611686018427387904 # big
|
||||||
x = -4611686018427387904 # big
|
x = -4611686018427387904 # big
|
||||||
|
|
||||||
# sys.maxsize is a constant mpz, so test it's compatible with dynamic ones
|
# sys.maxsize is a constant mpz, so test it's compatible with dynamic ones
|
||||||
try:
|
|
||||||
import usys as sys
|
|
||||||
except ImportError:
|
|
||||||
import sys
|
import sys
|
||||||
print(sys.maxsize + 1 - 1 == sys.maxsize)
|
print(sys.maxsize + 1 - 1 == sys.maxsize)
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import uio as io
|
import io
|
||||||
|
|
||||||
try:
|
try:
|
||||||
io.BytesIO
|
io.BytesIO
|
||||||
|
|
|
@ -1,10 +1,6 @@
|
||||||
# Make sure that write operations on io.BytesIO don't
|
# Make sure that write operations on io.BytesIO don't
|
||||||
# change original object it was constructed from.
|
# change original object it was constructed from.
|
||||||
try:
|
|
||||||
import uio as io
|
|
||||||
except ImportError:
|
|
||||||
import io
|
import io
|
||||||
|
|
||||||
b = b"foobar"
|
b = b"foobar"
|
||||||
|
|
||||||
a = io.BytesIO(b)
|
a = io.BytesIO(b)
|
||||||
|
|
|
@ -1,9 +1,5 @@
|
||||||
# Extended stream operations on io.BytesIO
|
# Extended stream operations on io.BytesIO
|
||||||
try:
|
|
||||||
import uio as io
|
|
||||||
except ImportError:
|
|
||||||
import io
|
import io
|
||||||
|
|
||||||
a = io.BytesIO(b"foobar")
|
a = io.BytesIO(b"foobar")
|
||||||
a.seek(10)
|
a.seek(10)
|
||||||
print(a.read(10))
|
print(a.read(10))
|
||||||
|
|
|
@ -1,8 +1,4 @@
|
||||||
try:
|
|
||||||
import uio as io
|
|
||||||
except ImportError:
|
|
||||||
import io
|
import io
|
||||||
|
|
||||||
a = io.BytesIO(b"foobar")
|
a = io.BytesIO(b"foobar")
|
||||||
try:
|
try:
|
||||||
a.seek(-10)
|
a.seek(-10)
|
||||||
|
|
|
@ -1,8 +1,4 @@
|
||||||
try:
|
|
||||||
import uio as io
|
|
||||||
except:
|
|
||||||
import io
|
import io
|
||||||
|
|
||||||
try:
|
try:
|
||||||
io.IOBase
|
io.IOBase
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
|
|
|
@ -1,8 +1,4 @@
|
||||||
try:
|
|
||||||
import uio as io
|
|
||||||
except ImportError:
|
|
||||||
import io
|
import io
|
||||||
|
|
||||||
a = io.StringIO()
|
a = io.StringIO()
|
||||||
print('io.StringIO' in repr(a))
|
print('io.StringIO' in repr(a))
|
||||||
print(a.getvalue())
|
print(a.getvalue())
|
||||||
|
|
|
@ -1,9 +1,6 @@
|
||||||
# Checks that an instance type inheriting from a native base that uses
|
# Checks that an instance type inheriting from a native base that uses
|
||||||
# MP_TYPE_FLAG_ITER_IS_STREAM will still have a getiter.
|
# MP_TYPE_FLAG_ITER_IS_STREAM will still have a getiter.
|
||||||
|
|
||||||
try:
|
|
||||||
import uio as io
|
|
||||||
except ImportError:
|
|
||||||
import io
|
import io
|
||||||
|
|
||||||
a = io.StringIO()
|
a = io.StringIO()
|
||||||
|
|
|
@ -1,8 +1,4 @@
|
||||||
try:
|
|
||||||
import uio as io
|
|
||||||
except ImportError:
|
|
||||||
import io
|
import io
|
||||||
|
|
||||||
# test __enter__/__exit__
|
# test __enter__/__exit__
|
||||||
with io.StringIO() as b:
|
with io.StringIO() as b:
|
||||||
b.write("foo")
|
b.write("foo")
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
# This tests extended (MicroPython-specific) form of write:
|
# This tests extended (MicroPython-specific) form of write:
|
||||||
# write(buf, len) and write(buf, offset, len)
|
# write(buf, len) and write(buf, offset, len)
|
||||||
import uio
|
import io
|
||||||
|
|
||||||
try:
|
try:
|
||||||
uio.BytesIO
|
io.BytesIO
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
print('SKIP')
|
print('SKIP')
|
||||||
raise SystemExit
|
raise SystemExit
|
||||||
|
|
||||||
buf = uio.BytesIO()
|
buf = io.BytesIO()
|
||||||
|
|
||||||
buf.write(b"foo", 2)
|
buf.write(b"foo", 2)
|
||||||
print(buf.getvalue())
|
print(buf.getvalue())
|
||||||
|
|
|
@ -4,9 +4,6 @@ try:
|
||||||
except:
|
except:
|
||||||
print("SKIP")
|
print("SKIP")
|
||||||
raise SystemExit
|
raise SystemExit
|
||||||
try:
|
|
||||||
import uarray as array
|
|
||||||
except ImportError:
|
|
||||||
try:
|
try:
|
||||||
import array
|
import array
|
||||||
except ImportError:
|
except ImportError:
|
||||||
|
|
|
@ -4,9 +4,6 @@ try:
|
||||||
except:
|
except:
|
||||||
print("SKIP")
|
print("SKIP")
|
||||||
raise SystemExit
|
raise SystemExit
|
||||||
try:
|
|
||||||
from uarray import array
|
|
||||||
except ImportError:
|
|
||||||
try:
|
try:
|
||||||
from array import array
|
from array import array
|
||||||
except ImportError:
|
except ImportError:
|
||||||
|
|
|
@ -4,9 +4,6 @@ try:
|
||||||
except:
|
except:
|
||||||
print("SKIP")
|
print("SKIP")
|
||||||
raise SystemExit
|
raise SystemExit
|
||||||
try:
|
|
||||||
from uarray import array
|
|
||||||
except ImportError:
|
|
||||||
try:
|
try:
|
||||||
from array import array
|
from array import array
|
||||||
except ImportError:
|
except ImportError:
|
||||||
|
|
|
@ -3,9 +3,6 @@ try:
|
||||||
except:
|
except:
|
||||||
print("SKIP")
|
print("SKIP")
|
||||||
raise SystemExit
|
raise SystemExit
|
||||||
try:
|
|
||||||
from uarray import array
|
|
||||||
except ImportError:
|
|
||||||
try:
|
try:
|
||||||
from array import array
|
from array import array
|
||||||
except ImportError:
|
except ImportError:
|
||||||
|
|
|
@ -6,9 +6,6 @@ except (NameError, TypeError):
|
||||||
print("SKIP")
|
print("SKIP")
|
||||||
raise SystemExit
|
raise SystemExit
|
||||||
|
|
||||||
try:
|
|
||||||
import uarray as array
|
|
||||||
except ImportError:
|
|
||||||
try:
|
try:
|
||||||
import array
|
import array
|
||||||
except ImportError:
|
except ImportError:
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# uPy behaviour only: builtin modules are read-only
|
# uPy behaviour only: builtin modules are read-only
|
||||||
import usys
|
import sys
|
||||||
try:
|
try:
|
||||||
usys.x = 1
|
sys.x = 1
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
print("AttributeError")
|
print("AttributeError")
|
||||||
|
|
|
@ -1,7 +1,4 @@
|
||||||
try:
|
try:
|
||||||
try:
|
|
||||||
from ucollections import namedtuple
|
|
||||||
except ImportError:
|
|
||||||
from collections import namedtuple
|
from collections import namedtuple
|
||||||
except ImportError:
|
except ImportError:
|
||||||
print("SKIP")
|
print("SKIP")
|
||||||
|
|
|
@ -1,7 +1,4 @@
|
||||||
try:
|
try:
|
||||||
try:
|
|
||||||
from ucollections import namedtuple
|
|
||||||
except ImportError:
|
|
||||||
from collections import namedtuple
|
from collections import namedtuple
|
||||||
except ImportError:
|
except ImportError:
|
||||||
print("SKIP")
|
print("SKIP")
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
try:
|
try:
|
||||||
from collections import OrderedDict
|
from collections import OrderedDict
|
||||||
except ImportError:
|
|
||||||
try:
|
|
||||||
from ucollections import OrderedDict
|
|
||||||
except ImportError:
|
except ImportError:
|
||||||
print("SKIP")
|
print("SKIP")
|
||||||
raise SystemExit
|
raise SystemExit
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
try:
|
try:
|
||||||
from collections import OrderedDict
|
from collections import OrderedDict
|
||||||
except ImportError:
|
|
||||||
try:
|
|
||||||
from ucollections import OrderedDict
|
|
||||||
except ImportError:
|
except ImportError:
|
||||||
print("SKIP")
|
print("SKIP")
|
||||||
raise SystemExit
|
raise SystemExit
|
||||||
|
|
|
@ -29,9 +29,9 @@ test_syntax("del ()") # can't delete empty tuple (in 3.6 we can)
|
||||||
|
|
||||||
# from basics/sys1.py
|
# from basics/sys1.py
|
||||||
# uPy prints version 3.4
|
# uPy prints version 3.4
|
||||||
import usys
|
import sys
|
||||||
print(usys.version[:3])
|
print(sys.version[:3])
|
||||||
print(usys.version_info[0], usys.version_info[1])
|
print(sys.version_info[0], sys.version_info[1])
|
||||||
|
|
||||||
# from basics/exception1.py
|
# from basics/exception1.py
|
||||||
# in 3.7 no comma is printed if there is only 1 arg (in 3.4-3.6 one is printed)
|
# in 3.7 no comma is printed if there is only 1 arg (in 3.4-3.6 one is printed)
|
||||||
|
|
|
@ -51,9 +51,6 @@ print("1/" <= "1")
|
||||||
|
|
||||||
# this tests an internal string that doesn't have a hash with a string
|
# this tests an internal string that doesn't have a hash with a string
|
||||||
# that does have a hash, but the lengths of the two strings are different
|
# that does have a hash, but the lengths of the two strings are different
|
||||||
try:
|
|
||||||
import usys as sys
|
|
||||||
except ImportError:
|
|
||||||
import sys
|
import sys
|
||||||
print(sys.version == 'a long string that has a hash')
|
print(sys.version == 'a long string that has a hash')
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,3 @@
|
||||||
try:
|
|
||||||
import ustruct as struct
|
|
||||||
except:
|
|
||||||
try:
|
try:
|
||||||
import struct
|
import struct
|
||||||
except ImportError:
|
except ImportError:
|
||||||
|
|
|
@ -1,6 +1,3 @@
|
||||||
try:
|
|
||||||
import ustruct as struct
|
|
||||||
except:
|
|
||||||
try:
|
try:
|
||||||
import struct
|
import struct
|
||||||
except ImportError:
|
except ImportError:
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
# test ustruct with a count specified before the type
|
# test struct with a count specified before the type
|
||||||
|
|
||||||
try:
|
|
||||||
import ustruct as struct
|
|
||||||
except:
|
|
||||||
try:
|
try:
|
||||||
import struct
|
import struct
|
||||||
except ImportError:
|
except ImportError:
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
# test ustruct and endian specific things
|
# test struct and endian specific things
|
||||||
|
|
||||||
try:
|
|
||||||
import ustruct as struct
|
|
||||||
except:
|
|
||||||
try:
|
try:
|
||||||
import struct
|
import struct
|
||||||
except ImportError:
|
except ImportError:
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
# test MicroPython-specific features of struct
|
# test MicroPython-specific features of struct
|
||||||
|
|
||||||
try:
|
|
||||||
import ustruct as struct
|
|
||||||
except:
|
|
||||||
try:
|
try:
|
||||||
import struct
|
import struct
|
||||||
except ImportError:
|
except ImportError:
|
||||||
|
|
|
@ -4,9 +4,6 @@
|
||||||
# and is callable (has call). The only one available is machine.Signal, which
|
# and is callable (has call). The only one available is machine.Signal, which
|
||||||
# in turns needs PinBase.
|
# in turns needs PinBase.
|
||||||
try:
|
try:
|
||||||
try:
|
|
||||||
import umachine as machine
|
|
||||||
except ImportError:
|
|
||||||
import machine
|
import machine
|
||||||
machine.PinBase
|
machine.PinBase
|
||||||
machine.Signal
|
machine.Signal
|
||||||
|
|
|
@ -29,7 +29,6 @@ except Exception as bad:
|
||||||
print(type(bad), bad.args[0])
|
print(type(bad), bad.args[0])
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
|
||||||
def gen():
|
def gen():
|
||||||
yield
|
yield
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,6 @@
|
||||||
# test sys module
|
# test sys module
|
||||||
|
|
||||||
try:
|
|
||||||
import usys as sys
|
|
||||||
except ImportError:
|
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
print(sys.__name__)
|
print(sys.__name__)
|
||||||
print(type(sys.path))
|
print(type(sys.path))
|
||||||
print(type(sys.argv))
|
print(type(sys.argv))
|
||||||
|
|
|
@ -1,10 +1,6 @@
|
||||||
# test sys module's exit function
|
# test sys module's exit function
|
||||||
|
|
||||||
try:
|
|
||||||
import usys as sys
|
|
||||||
except ImportError:
|
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
try:
|
try:
|
||||||
sys.exit
|
sys.exit
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
# test sys.getsizeof() function
|
# test sys.getsizeof() function
|
||||||
|
|
||||||
try:
|
|
||||||
import usys as sys
|
|
||||||
except ImportError:
|
|
||||||
import sys
|
import sys
|
||||||
try:
|
try:
|
||||||
sys.getsizeof
|
sys.getsizeof
|
||||||
|
@ -19,7 +16,7 @@ print(sys.getsizeof(A()) > 0)
|
||||||
|
|
||||||
# Only test deque if we have it
|
# Only test deque if we have it
|
||||||
try:
|
try:
|
||||||
from ucollections import deque
|
from collections import deque
|
||||||
assert sys.getsizeof(deque((), 1)) > 0
|
assert sys.getsizeof(deque((), 1)) > 0
|
||||||
except ImportError:
|
except ImportError:
|
||||||
pass
|
pass
|
||||||
|
|
|
@ -1,10 +1,6 @@
|
||||||
# test sys.path
|
# test sys.path
|
||||||
|
|
||||||
try:
|
|
||||||
import usys as sys
|
|
||||||
except ImportError:
|
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
# check that this script was executed from a file of the same name
|
# check that this script was executed from a file of the same name
|
||||||
if "__file__" not in globals() or "sys_path.py" not in __file__:
|
if "__file__" not in globals() or "sys_path.py" not in __file__:
|
||||||
print("SKIP")
|
print("SKIP")
|
||||||
|
|
|
@ -1,10 +1,6 @@
|
||||||
# test sys.tracebacklimit
|
# test sys.tracebacklimit
|
||||||
|
|
||||||
try:
|
try:
|
||||||
try:
|
|
||||||
import usys as sys
|
|
||||||
import uio as io
|
|
||||||
except ImportError:
|
|
||||||
import sys
|
import sys
|
||||||
import io
|
import io
|
||||||
except ImportError:
|
except ImportError:
|
||||||
|
|
|
@ -1,35 +1,35 @@
|
||||||
Traceback (most recent call last):
|
Traceback (most recent call last):
|
||||||
File , line 62, in ftop
|
File , line 58, in ftop
|
||||||
File , line 57, in f3
|
File , line 53, in f3
|
||||||
File , line 53, in f2
|
File , line 49, in f2
|
||||||
File , line 49, in f1
|
File , line 45, in f1
|
||||||
File , line 45, in f0
|
File , line 41, in f0
|
||||||
ValueError: value
|
ValueError: value
|
||||||
|
|
||||||
limit 4
|
limit 4
|
||||||
Traceback (most recent call last):
|
Traceback (most recent call last):
|
||||||
File , line 62, in ftop
|
File , line 58, in ftop
|
||||||
File , line 57, in f3
|
File , line 53, in f3
|
||||||
File , line 53, in f2
|
File , line 49, in f2
|
||||||
File , line 49, in f1
|
File , line 45, in f1
|
||||||
ValueError: value
|
ValueError: value
|
||||||
|
|
||||||
limit 3
|
limit 3
|
||||||
Traceback (most recent call last):
|
Traceback (most recent call last):
|
||||||
File , line 62, in ftop
|
File , line 58, in ftop
|
||||||
File , line 57, in f3
|
File , line 53, in f3
|
||||||
File , line 53, in f2
|
File , line 49, in f2
|
||||||
ValueError: value
|
ValueError: value
|
||||||
|
|
||||||
limit 2
|
limit 2
|
||||||
Traceback (most recent call last):
|
Traceback (most recent call last):
|
||||||
File , line 62, in ftop
|
File , line 58, in ftop
|
||||||
File , line 57, in f3
|
File , line 53, in f3
|
||||||
ValueError: value
|
ValueError: value
|
||||||
|
|
||||||
limit 1
|
limit 1
|
||||||
Traceback (most recent call last):
|
Traceback (most recent call last):
|
||||||
File , line 62, in ftop
|
File , line 58, in ftop
|
||||||
ValueError: value
|
ValueError: value
|
||||||
|
|
||||||
limit 0
|
limit 0
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
import uos
|
import os
|
||||||
|
|
||||||
uos.putenv('MICROPYINSPECT', '1')
|
os.putenv('MICROPYINSPECT', '1')
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# test changing ps1/ps2
|
# test changing ps1/ps2
|
||||||
import usys
|
import sys
|
||||||
usys.ps1 = "PS1"
|
sys.ps1 = "PS1"
|
||||||
usys.ps2 = "PS2"
|
sys.ps2 = "PS2"
|
||||||
(1 +
|
(1 +
|
||||||
2)
|
2)
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
MicroPython \.\+ version
|
MicroPython \.\+ version
|
||||||
Use \.\+
|
Use \.\+
|
||||||
>>> # test changing ps1/ps2
|
>>> # test changing ps1/ps2
|
||||||
>>> import usys
|
>>> import sys
|
||||||
>>> usys.ps1 = "PS1"
|
>>> sys.ps1 = "PS1"
|
||||||
PS1usys.ps2 = "PS2"
|
PS1sys.ps2 = "PS2"
|
||||||
PS1(1 +
|
PS1(1 +
|
||||||
PS22)
|
PS22)
|
||||||
3
|
3
|
||||||
|
|
|
@ -22,10 +22,10 @@ def log(*args):
|
||||||
|
|
||||||
|
|
||||||
# replace boot.py with the test code that will run on each reboot
|
# replace boot.py with the test code that will run on each reboot
|
||||||
import uos
|
import os
|
||||||
|
|
||||||
try:
|
try:
|
||||||
uos.rename("boot.py", "boot-orig.py")
|
os.rename("boot.py", "boot-orig.py")
|
||||||
except:
|
except:
|
||||||
pass
|
pass
|
||||||
with open("boot.py", "w") as f:
|
with open("boot.py", "w") as f:
|
||||||
|
@ -74,10 +74,10 @@ elif STEP == 3:
|
||||||
elif STEP == 4:
|
elif STEP == 4:
|
||||||
log("Confirming boot ok and DONE!")
|
log("Confirming boot ok and DONE!")
|
||||||
Partition.mark_app_valid_cancel_rollback()
|
Partition.mark_app_valid_cancel_rollback()
|
||||||
import uos
|
import os
|
||||||
uos.remove("step.py")
|
os.remove("step.py")
|
||||||
uos.remove("boot.py")
|
os.remove("boot.py")
|
||||||
uos.rename("boot-orig.py", "boot.py")
|
os.rename("boot-orig.py", "boot.py")
|
||||||
print("\\nSUCCESS!\\n\\x04\\x04")
|
print("\\nSUCCESS!\\n\\x04\\x04")
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
|
@ -5,9 +5,6 @@ if sys.implementation.name == "micropython" and sys.platform != "esp32":
|
||||||
print("SKIP")
|
print("SKIP")
|
||||||
raise SystemExit
|
raise SystemExit
|
||||||
|
|
||||||
try:
|
|
||||||
import usocket as socket, sys
|
|
||||||
except:
|
|
||||||
import socket, sys
|
import socket, sys
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,4 @@
|
||||||
try:
|
try:
|
||||||
try:
|
|
||||||
import ubinascii as binascii
|
|
||||||
except ImportError:
|
|
||||||
import binascii
|
import binascii
|
||||||
except ImportError:
|
except ImportError:
|
||||||
print("SKIP")
|
print("SKIP")
|
|
@ -1,7 +1,4 @@
|
||||||
try:
|
try:
|
||||||
try:
|
|
||||||
import ubinascii as binascii
|
|
||||||
except ImportError:
|
|
||||||
import binascii
|
import binascii
|
||||||
except ImportError:
|
except ImportError:
|
||||||
print("SKIP")
|
print("SKIP")
|
|
@ -1,7 +1,4 @@
|
||||||
try:
|
try:
|
||||||
try:
|
|
||||||
import ubinascii as binascii
|
|
||||||
except ImportError:
|
|
||||||
import binascii
|
import binascii
|
||||||
except ImportError:
|
except ImportError:
|
||||||
print("SKIP")
|
print("SKIP")
|
|
@ -1,7 +1,4 @@
|
||||||
try:
|
try:
|
||||||
try:
|
|
||||||
import ubinascii as binascii
|
|
||||||
except ImportError:
|
|
||||||
import binascii
|
import binascii
|
||||||
except ImportError:
|
except ImportError:
|
||||||
print("SKIP")
|
print("SKIP")
|
|
@ -1,7 +1,4 @@
|
||||||
try:
|
try:
|
||||||
try:
|
|
||||||
import ubinascii as binascii
|
|
||||||
except ImportError:
|
|
||||||
import binascii
|
import binascii
|
||||||
except ImportError:
|
except ImportError:
|
||||||
print("SKIP")
|
print("SKIP")
|
|
@ -1,13 +1,13 @@
|
||||||
try:
|
try:
|
||||||
import btree
|
import btree
|
||||||
import uio
|
import io
|
||||||
import uerrno
|
import errno
|
||||||
except ImportError:
|
except ImportError:
|
||||||
print("SKIP")
|
print("SKIP")
|
||||||
raise SystemExit
|
raise SystemExit
|
||||||
|
|
||||||
# f = open("_test.db", "w+b")
|
# f = open("_test.db", "w+b")
|
||||||
f = uio.BytesIO()
|
f = io.BytesIO()
|
||||||
db = btree.open(f, pagesize=512)
|
db = btree.open(f, pagesize=512)
|
||||||
|
|
||||||
mv = memoryview(b"bar1foo1")
|
mv = memoryview(b"bar1foo1")
|
||||||
|
@ -68,7 +68,7 @@ print(db.seq(1, b"qux"))
|
||||||
try:
|
try:
|
||||||
db.seq(b"foo1")
|
db.seq(b"foo1")
|
||||||
except OSError as e:
|
except OSError as e:
|
||||||
print(e.errno == uerrno.EINVAL)
|
print(e.errno == errno.EINVAL)
|
||||||
|
|
||||||
print(list(db.keys()))
|
print(list(db.keys()))
|
||||||
print(list(db.values()))
|
print(list(db.values()))
|
||||||
|
|
|
@ -1,15 +1,15 @@
|
||||||
# Test that errno's propagate correctly through btree module.
|
# Test that errno's propagate correctly through btree module.
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import btree, uio, uerrno
|
import btree, io, errno
|
||||||
|
|
||||||
uio.IOBase
|
io.IOBase
|
||||||
except (ImportError, AttributeError):
|
except (ImportError, AttributeError):
|
||||||
print("SKIP")
|
print("SKIP")
|
||||||
raise SystemExit
|
raise SystemExit
|
||||||
|
|
||||||
|
|
||||||
class Device(uio.IOBase):
|
class Device(io.IOBase):
|
||||||
def __init__(self, read_ret=0, ioctl_ret=0):
|
def __init__(self, read_ret=0, ioctl_ret=0):
|
||||||
self.read_ret = read_ret
|
self.read_ret = read_ret
|
||||||
self.ioctl_ret = ioctl_ret
|
self.ioctl_ret = ioctl_ret
|
||||||
|
@ -25,18 +25,24 @@ class Device(uio.IOBase):
|
||||||
|
|
||||||
# Invalid pagesize; errno comes from btree library
|
# Invalid pagesize; errno comes from btree library
|
||||||
try:
|
try:
|
||||||
|
import btree, io, errno
|
||||||
|
|
||||||
db = btree.open(Device(), pagesize=511)
|
db = btree.open(Device(), pagesize=511)
|
||||||
except OSError as er:
|
except OSError as er:
|
||||||
print("OSError", er.errno == uerrno.EINVAL)
|
print("OSError", er.errno == errno.EINVAL)
|
||||||
|
|
||||||
# Valid pagesize, device returns error on read; errno comes from Device.readinto
|
# Valid pagesize, device returns error on read; errno comes from Device.readinto
|
||||||
try:
|
try:
|
||||||
|
import btree, io, errno
|
||||||
|
|
||||||
db = btree.open(Device(-1000), pagesize=512)
|
db = btree.open(Device(-1000), pagesize=512)
|
||||||
except OSError as er:
|
except OSError as er:
|
||||||
print(repr(er))
|
print(repr(er))
|
||||||
|
|
||||||
# Valid pagesize, device returns error on seek; errno comes from Device.ioctl
|
# Valid pagesize, device returns error on seek; errno comes from Device.ioctl
|
||||||
try:
|
try:
|
||||||
|
import btree, io, errno
|
||||||
|
|
||||||
db = btree.open(Device(0, -1001), pagesize=512)
|
db = btree.open(Device(0, -1001), pagesize=512)
|
||||||
except OSError as er:
|
except OSError as er:
|
||||||
print(repr(er))
|
print(repr(er))
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Test btree interaction with the garbage collector.
|
# Test btree interaction with the garbage collector.
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import btree, uio, gc
|
import btree, io, gc
|
||||||
except ImportError:
|
except ImportError:
|
||||||
print("SKIP")
|
print("SKIP")
|
||||||
raise SystemExit
|
raise SystemExit
|
||||||
|
@ -9,7 +9,7 @@ except ImportError:
|
||||||
N = 80
|
N = 80
|
||||||
|
|
||||||
# Create a BytesIO but don't keep a reference to it.
|
# Create a BytesIO but don't keep a reference to it.
|
||||||
db = btree.open(uio.BytesIO(), pagesize=512)
|
db = btree.open(io.BytesIO(), pagesize=512)
|
||||||
|
|
||||||
# Overwrite lots of the Python stack to make sure no reference to the BytesIO remains.
|
# Overwrite lots of the Python stack to make sure no reference to the BytesIO remains.
|
||||||
x = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
|
x = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
|
||||||
|
|
|
@ -4,7 +4,7 @@ try:
|
||||||
aes = AES.new
|
aes = AES.new
|
||||||
except ImportError:
|
except ImportError:
|
||||||
try:
|
try:
|
||||||
from ucryptolib import aes
|
from cryptolib import aes
|
||||||
except ImportError:
|
except ImportError:
|
||||||
print("SKIP")
|
print("SKIP")
|
||||||
raise SystemExit
|
raise SystemExit
|
|
@ -1,5 +1,5 @@
|
||||||
try:
|
try:
|
||||||
from ucryptolib import aes
|
from cryptolib import aes
|
||||||
except ImportError:
|
except ImportError:
|
||||||
print("SKIP")
|
print("SKIP")
|
||||||
raise SystemExit
|
raise SystemExit
|
|
@ -4,7 +4,7 @@ try:
|
||||||
aes = AES.new
|
aes = AES.new
|
||||||
except ImportError:
|
except ImportError:
|
||||||
try:
|
try:
|
||||||
from ucryptolib import aes
|
from cryptolib import aes
|
||||||
except ImportError:
|
except ImportError:
|
||||||
print("SKIP")
|
print("SKIP")
|
||||||
raise SystemExit
|
raise SystemExit
|
|
@ -7,7 +7,7 @@ try:
|
||||||
aes = AES.new
|
aes = AES.new
|
||||||
except ImportError:
|
except ImportError:
|
||||||
try:
|
try:
|
||||||
from ucryptolib import aes
|
from cryptolib import aes
|
||||||
except ImportError:
|
except ImportError:
|
||||||
print("SKIP")
|
print("SKIP")
|
||||||
raise SystemExit
|
raise SystemExit
|
|
@ -1,6 +1,6 @@
|
||||||
# Inplace operations (input and output buffer is the same)
|
# Inplace operations (input and output buffer is the same)
|
||||||
try:
|
try:
|
||||||
from ucryptolib import aes
|
from cryptolib import aes
|
||||||
except ImportError:
|
except ImportError:
|
||||||
print("SKIP")
|
print("SKIP")
|
||||||
raise SystemExit
|
raise SystemExit
|
|
@ -1,6 +1,6 @@
|
||||||
# Operations with pre-allocated output buffer
|
# Operations with pre-allocated output buffer
|
||||||
try:
|
try:
|
||||||
from ucryptolib import aes
|
from cryptolib import aes
|
||||||
except ImportError:
|
except ImportError:
|
||||||
print("SKIP")
|
print("SKIP")
|
||||||
raise SystemExit
|
raise SystemExit
|
|
@ -4,7 +4,7 @@ try:
|
||||||
aes = AES.new
|
aes = AES.new
|
||||||
except ImportError:
|
except ImportError:
|
||||||
try:
|
try:
|
||||||
from ucryptolib import aes
|
from cryptolib import aes
|
||||||
except ImportError:
|
except ImportError:
|
||||||
print("SKIP")
|
print("SKIP")
|
||||||
raise SystemExit
|
raise SystemExit
|
|
@ -4,7 +4,7 @@ try:
|
||||||
aes = AES.new
|
aes = AES.new
|
||||||
except ImportError:
|
except ImportError:
|
||||||
try:
|
try:
|
||||||
from ucryptolib import aes
|
from cryptolib import aes
|
||||||
except ImportError:
|
except ImportError:
|
||||||
print("SKIP")
|
print("SKIP")
|
||||||
raise SystemExit
|
raise SystemExit
|
|
@ -1,11 +1,11 @@
|
||||||
try:
|
try:
|
||||||
import framebuf, usys
|
import framebuf, sys
|
||||||
except ImportError:
|
except ImportError:
|
||||||
print("SKIP")
|
print("SKIP")
|
||||||
raise SystemExit
|
raise SystemExit
|
||||||
|
|
||||||
# This test and its .exp file is based on a little-endian architecture.
|
# This test and its .exp file is based on a little-endian architecture.
|
||||||
if usys.byteorder != "little":
|
if sys.byteorder != "little":
|
||||||
print("SKIP")
|
print("SKIP")
|
||||||
raise SystemExit
|
raise SystemExit
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Test blit between different color spaces
|
# Test blit between different color spaces
|
||||||
try:
|
try:
|
||||||
import framebuf, usys
|
import framebuf, sys
|
||||||
except ImportError:
|
except ImportError:
|
||||||
print("SKIP")
|
print("SKIP")
|
||||||
raise SystemExit
|
raise SystemExit
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
# test subclassing framebuf.FrameBuffer
|
# test subclassing framebuf.FrameBuffer
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import framebuf, usys
|
import framebuf, sys
|
||||||
except ImportError:
|
except ImportError:
|
||||||
print("SKIP")
|
print("SKIP")
|
||||||
raise SystemExit
|
raise SystemExit
|
||||||
|
|
||||||
# This test and its .exp file is based on a little-endian architecture.
|
# This test and its .exp file is based on a little-endian architecture.
|
||||||
if usys.byteorder != "little":
|
if sys.byteorder != "little":
|
||||||
print("SKIP")
|
print("SKIP")
|
||||||
raise SystemExit
|
raise SystemExit
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
try:
|
try:
|
||||||
import uhashlib
|
import hashlib
|
||||||
except ImportError:
|
except ImportError:
|
||||||
print("SKIP")
|
print("SKIP")
|
||||||
raise SystemExit
|
raise SystemExit
|
||||||
|
|
||||||
|
|
||||||
for algo_name in ("md5", "sha1", "sha256"):
|
for algo_name in ("md5", "sha1", "sha256"):
|
||||||
algo = getattr(uhashlib, algo_name, None)
|
algo = getattr(hashlib, algo_name, None)
|
||||||
if not algo:
|
if not algo:
|
||||||
continue
|
continue
|
||||||
|
|
|
@ -0,0 +1,18 @@
|
||||||
|
try:
|
||||||
|
import hashlib
|
||||||
|
except ImportError:
|
||||||
|
# This is neither uPy, nor cPy, so must be uPy with
|
||||||
|
# hashlib module disabled.
|
||||||
|
print("SKIP")
|
||||||
|
raise SystemExit
|
||||||
|
|
||||||
|
try:
|
||||||
|
hashlib.md5
|
||||||
|
except AttributeError:
|
||||||
|
# MD5 is only available on some ports
|
||||||
|
print("SKIP")
|
||||||
|
raise SystemExit
|
||||||
|
|
||||||
|
md5 = hashlib.md5(b"hello")
|
||||||
|
md5.update(b"world")
|
||||||
|
print(md5.digest())
|
|
@ -0,0 +1,18 @@
|
||||||
|
try:
|
||||||
|
import hashlib
|
||||||
|
except ImportError:
|
||||||
|
# This is neither uPy, nor cPy, so must be uPy with
|
||||||
|
# hashlib module disabled.
|
||||||
|
print("SKIP")
|
||||||
|
raise SystemExit
|
||||||
|
|
||||||
|
try:
|
||||||
|
hashlib.sha1
|
||||||
|
except AttributeError:
|
||||||
|
# SHA1 is only available on some ports
|
||||||
|
print("SKIP")
|
||||||
|
raise SystemExit
|
||||||
|
|
||||||
|
sha1 = hashlib.sha1(b"hello")
|
||||||
|
sha1.update(b"world")
|
||||||
|
print(sha1.digest())
|
|
@ -1,11 +1,8 @@
|
||||||
try:
|
|
||||||
import uhashlib as hashlib
|
|
||||||
except ImportError:
|
|
||||||
try:
|
try:
|
||||||
import hashlib
|
import hashlib
|
||||||
except ImportError:
|
except ImportError:
|
||||||
# This is neither uPy, nor cPy, so must be uPy with
|
# This is neither uPy, nor cPy, so must be uPy with
|
||||||
# uhashlib module disabled.
|
# hashlib module disabled.
|
||||||
print("SKIP")
|
print("SKIP")
|
||||||
raise SystemExit
|
raise SystemExit
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue