mirror of
https://github.com/urbit/ares.git
synced 2024-11-23 09:06:23 +03:00
150 lines
4.1 KiB
Rust
150 lines
4.1 KiB
Rust
|
use core::{
|
||
|
fmt::Debug,
|
||
|
ops::{Mul, MulAssign},
|
||
|
};
|
||
|
use ibig::{ibig, ubig};
|
||
|
|
||
|
fn test_mul<'a, T>(a: &'a T, b: &'a T, c: &'a T)
|
||
|
where
|
||
|
T: Mul<T, Output = T>,
|
||
|
T: Mul<&'a T, Output = T>,
|
||
|
&'a T: Mul<T, Output = T>,
|
||
|
&'a T: Mul<&'a T, Output = T>,
|
||
|
T: MulAssign<T>,
|
||
|
T: MulAssign<&'a T>,
|
||
|
T: Clone,
|
||
|
T: Debug,
|
||
|
T: Eq,
|
||
|
{
|
||
|
assert_eq!(a * b, *c);
|
||
|
assert_eq!(a.clone() * b, *c);
|
||
|
assert_eq!(a * b.clone(), *c);
|
||
|
assert_eq!(a.clone() * b.clone(), *c);
|
||
|
|
||
|
let mut x = a.clone();
|
||
|
x *= b;
|
||
|
assert_eq!(x, *c);
|
||
|
|
||
|
let mut x = a.clone();
|
||
|
x *= b.clone();
|
||
|
assert_eq!(x, *c);
|
||
|
}
|
||
|
|
||
|
#[test]
|
||
|
fn test_mul_ubig() {
|
||
|
let test_cases = [
|
||
|
(ubig!(0), ubig!(4), ubig!(0)),
|
||
|
(ubig!(3), ubig!(4), ubig!(12)),
|
||
|
(ubig!(0x123456789abc), ubig!(0x444333222111fff), ubig!(0x4daae4d8531f8de7e1fb5ae544)),
|
||
|
(ubig!(0), ubig!(1) << 100, ubig!(0)),
|
||
|
(
|
||
|
ubig!(1),
|
||
|
ubig!(_0x123456789123456789123456789123456789),
|
||
|
ubig!(_0x123456789123456789123456789123456789)
|
||
|
),
|
||
|
(
|
||
|
ubig!(0x10),
|
||
|
ubig!(_0x123456789123456789123456789123456789),
|
||
|
ubig!(_0x1234567891234567891234567891234567890)
|
||
|
),
|
||
|
(
|
||
|
ubig!(0x1000000000000000),
|
||
|
ubig!(_0x123456789123456789123456789123456789),
|
||
|
ubig!(_0x123456789123456789123456789123456789000000000000000)
|
||
|
),
|
||
|
(
|
||
|
ubig!(_0x123456789123456789123456789123456789123456789123456789),
|
||
|
ubig!(_0xabcdefabcdefabcdefabcdefabcdef),
|
||
|
ubig!(_0xc379ab6dbd40ef67e528bfffd3039491348e20491348e20491348d5ccf67db24c3a1cca8f7891375de7)
|
||
|
),
|
||
|
];
|
||
|
|
||
|
for (a, b, c) in &test_cases {
|
||
|
test_mul(a, b, c);
|
||
|
test_mul(b, a, c);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#[test]
|
||
|
fn test_mul_ibig() {
|
||
|
let test_cases = [
|
||
|
(ibig!(3), ibig!(4), ibig!(12)),
|
||
|
(ibig!(-3), ibig!(4), ibig!(-12)),
|
||
|
(ibig!(-3), ibig!(-4), ibig!(12)),
|
||
|
];
|
||
|
|
||
|
for (a, b, c) in &test_cases {
|
||
|
test_mul(a, b, c);
|
||
|
test_mul(b, a, c);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#[test]
|
||
|
#[allow(clippy::op_ref, clippy::erasing_op)]
|
||
|
fn test_mul_ubig_primitive() {
|
||
|
assert_eq!(ubig!(3) * 4u8, ubig!(12));
|
||
|
assert_eq!(ubig!(3) * &4u8, ubig!(12));
|
||
|
assert_eq!(&ubig!(3) * 4u8, ubig!(12));
|
||
|
assert_eq!(&ubig!(3) * &4u8, ubig!(12));
|
||
|
assert_eq!(4u8 * ubig!(3), ubig!(12));
|
||
|
assert_eq!(4u8 * &ubig!(3), ubig!(12));
|
||
|
assert_eq!(&4u8 * ubig!(3), ubig!(12));
|
||
|
assert_eq!(&4u8 * &ubig!(3), ubig!(12));
|
||
|
let mut x = ubig!(3);
|
||
|
x *= 2u8;
|
||
|
x *= &2u8;
|
||
|
assert_eq!(x, ubig!(12));
|
||
|
|
||
|
assert_eq!(ubig!(3) * 4, ubig!(12));
|
||
|
assert_eq!(ubig!(3) * &4, ubig!(12));
|
||
|
assert_eq!(&ubig!(3) * 4, ubig!(12));
|
||
|
assert_eq!(&ubig!(3) * &4, ubig!(12));
|
||
|
assert_eq!(4 * ubig!(3), ubig!(12));
|
||
|
assert_eq!(4 * &ubig!(3), ubig!(12));
|
||
|
assert_eq!(&4 * ubig!(3), ubig!(12));
|
||
|
assert_eq!(&4 * &ubig!(3), ubig!(12));
|
||
|
let mut x = ubig!(3);
|
||
|
x *= 2;
|
||
|
x *= &2;
|
||
|
assert_eq!(x, ubig!(12));
|
||
|
|
||
|
assert_eq!(ubig!(0) * -1, ubig!(0));
|
||
|
assert_eq!(ubig!(5) * 0, ubig!(0));
|
||
|
}
|
||
|
|
||
|
#[test]
|
||
|
#[should_panic]
|
||
|
fn test_mul_ubig_primitive_overflow() {
|
||
|
let _ = ubig!(3) * (-5);
|
||
|
}
|
||
|
|
||
|
#[test]
|
||
|
#[allow(clippy::op_ref)]
|
||
|
fn test_mul_ibig_primitive() {
|
||
|
assert_eq!(ibig!(-3) * 4u8, ibig!(-12));
|
||
|
assert_eq!(ibig!(-3) * &4u8, ibig!(-12));
|
||
|
assert_eq!(&ibig!(-3) * 4u8, ibig!(-12));
|
||
|
assert_eq!(&ibig!(-3) * &4u8, ibig!(-12));
|
||
|
assert_eq!(4u8 * ibig!(-3), ibig!(-12));
|
||
|
assert_eq!(4u8 * &ibig!(-3), ibig!(-12));
|
||
|
assert_eq!(&4u8 * ibig!(-3), ibig!(-12));
|
||
|
assert_eq!(&4u8 * &ibig!(-3), ibig!(-12));
|
||
|
let mut x = ibig!(-3);
|
||
|
x *= 2u8;
|
||
|
x *= &2u8;
|
||
|
assert_eq!(x, ibig!(-12));
|
||
|
|
||
|
assert_eq!(ibig!(-3) * -4, ibig!(12));
|
||
|
assert_eq!(ibig!(-3) * &-4, ibig!(12));
|
||
|
assert_eq!(&ibig!(-3) * -4, ibig!(12));
|
||
|
assert_eq!(&ibig!(-3) * &-4, ibig!(12));
|
||
|
assert_eq!(-4 * ibig!(-3), ibig!(12));
|
||
|
assert_eq!(-4 * &ibig!(-3), ibig!(12));
|
||
|
assert_eq!(&-4 * ibig!(-3), ibig!(12));
|
||
|
assert_eq!(&-4 * &ibig!(-3), ibig!(12));
|
||
|
let mut x = ibig!(-3);
|
||
|
x *= 2;
|
||
|
x *= &-2;
|
||
|
assert_eq!(x, ibig!(12));
|
||
|
}
|