blob: ea7c635a552f1dbdbac48aa3723adb64a019c95d [file] [log] [blame]
#
# Copyright (c) 2008-2010 Stefan Krah. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#
#
# For each possible locale setting, test formatting using random
# format strings.
#
# Usage: python3.2 genrandlocale.py | ../runtest -
#
import sys, locale, random
from formathelper import locale_list, rand_format, integers, printit
from randdec import un_incr_digits
print("rounding: half_even")
testno = 0
for loc in locale_list:
try:
locale.setlocale(locale.LC_ALL, loc)
except locale.Error as err:
sys.stderr.write("%s: %s\n" % (loc, err))
continue
print("locale: %s" % loc)
for sign in ('', '-'):
intpart = fracpart = ''
while (not intpart) and (not fracpart):
intpart = random.choice(integers)
fracpart = random.choice(integers)
s = ''.join((sign, intpart, '.', fracpart))
fmt = rand_format('x')
testno += 1
printit(testno, s, fmt)
for s in un_incr_digits(15, 384, 30):
fmt = rand_format('x')
testno += 1
printit(testno, s, fmt)