// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. // Test that rnd.nextInt with a seed generates the same sequence each time. // Library tag to allow Dartium to run the test. library random_test; import "package:expect/expect.dart"; import 'dart:math'; main() { var rnd = new Random(20130307); // Make sure we do not break the random number generation. // If the random algorithm changes, make sure both the VM and dart2js // generate the same new sequence. var i = 1; Expect.equals( 1, rnd.nextInt(i *= 2)); Expect.equals( 1, rnd.nextInt(i *= 2)); Expect.equals( 7, rnd.nextInt(i *= 2)); Expect.equals( 6, rnd.nextInt(i *= 2)); Expect.equals( 6, rnd.nextInt(i *= 2)); Expect.equals( 59, rnd.nextInt(i *= 2)); Expect.equals( 11, rnd.nextInt(i *= 2)); Expect.equals( 212, rnd.nextInt(i *= 2)); Expect.equals( 17, rnd.nextInt(i *= 2)); Expect.equals( 507, rnd.nextInt(i *= 2)); Expect.equals( 1060, rnd.nextInt(i *= 2)); Expect.equals( 891, rnd.nextInt(i *= 2)); Expect.equals( 1534, rnd.nextInt(i *= 2)); Expect.equals( 8404, rnd.nextInt(i *= 2)); Expect.equals( 13839, rnd.nextInt(i *= 2)); Expect.equals( 23298, rnd.nextInt(i *= 2)); Expect.equals( 53622, rnd.nextInt(i *= 2)); Expect.equals( 205997, rnd.nextInt(i *= 2)); Expect.equals( 393823, rnd.nextInt(i *= 2)); Expect.equals( 514614, rnd.nextInt(i *= 2)); Expect.equals( 233715, rnd.nextInt(i *= 2)); Expect.equals( 895357, rnd.nextInt(i *= 2)); Expect.equals( 4726185, rnd.nextInt(i *= 2)); Expect.equals( 7976427, rnd.nextInt(i *= 2)); Expect.equals( 31792146, rnd.nextInt(i *= 2)); Expect.equals( 35563210, rnd.nextInt(i *= 2)); Expect.equals( 113261265, rnd.nextInt(i *= 2)); Expect.equals( 205117298, rnd.nextInt(i *= 2)); Expect.equals( 447729735, rnd.nextInt(i *= 2)); Expect.equals(1072507596, rnd.nextInt(i *= 2)); Expect.equals(2134030067, rnd.nextInt(i *= 2)); Expect.equals( 721180690, rnd.nextInt(i *= 2)); Expect.equals(0x100000000, i); // If max is too large expect an ArgumentError. Expect.throws(() => rnd.nextInt(i + 1), (e) => e is ArgumentError); rnd = new Random(6790); Expect.approxEquals(0.7360144236, rnd.nextDouble()); Expect.approxEquals(0.3292339731, rnd.nextDouble()); Expect.approxEquals(0.3489622548, rnd.nextDouble()); Expect.approxEquals(0.9815975892, rnd.nextDouble()); }