This repository has been archived on 2021-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
FractionTask/tst_fractiontest.cpp

448 lines
11 KiB
C++
Raw Normal View History

2021-09-17 12:32:14 +02:00
#include <QtTest>
2021-09-20 16:34:45 +02:00
#include <QDebug>
2021-09-17 12:32:14 +02:00
#include "fraction.hpp"
2021-09-17 14:47:29 +02:00
using namespace FractionNS;
class FractionTest : public QObject {
2021-09-17 14:47:29 +02:00
Q_OBJECT
2021-09-17 12:32:14 +02:00
public:
2021-09-17 14:47:29 +02:00
FractionTest();
~FractionTest();
2021-09-17 12:32:14 +02:00
private slots:
2021-09-17 14:47:29 +02:00
void test_constructor();
void test_display();
void test_equivalence();
void test_addition();
void test_inequivalence();
2021-09-20 16:34:45 +02:00
void test_substraction();
void test_multiplication();
2021-09-21 09:30:49 +02:00
void test_division();
2021-09-21 10:03:45 +02:00
void test_negation();
void test_unary_plus();
void test_less_than();
void test_greater_than();
2021-09-21 10:12:20 +02:00
void test_less_than_or_equal();
void test_greater_than_or_equal();
void test_inverse();
2021-09-17 12:32:14 +02:00
};
FractionTest::FractionTest() {
qDebug();
};
FractionTest::~FractionTest() {};
2021-09-17 12:32:14 +02:00
2021-09-21 10:03:45 +02:00
void FractionTest::test_constructor() {
2021-09-17 14:47:29 +02:00
// Normal fraction
Fraction f1 = Fraction(1, 2);
QCOMPARE(f1.getNumerator(), 1);
QCOMPARE(f1.getDenominator(), 2);
// Reducible fraction
Fraction f2 = Fraction(2, 4);
2021-09-17 14:47:29 +02:00
QCOMPARE(f2.getNumerator(), 1);
QCOMPARE(f2.getDenominator(), 2);
// Negative fractions
Fraction f3 = Fraction(-1, 3);
QCOMPARE(f3.getNumerator(), -1);
QCOMPARE(f3.getDenominator(), 3);
Fraction f4 = Fraction(1, -3);
QCOMPARE(f4.getNumerator(), -1);
QCOMPARE(f4.getDenominator(), 3);
// Double negative (positive) fraction
Fraction f5 = Fraction(-2, -3);
QCOMPARE(f5.getNumerator(), 2);
QCOMPARE(f5.getDenominator(), 3);
2021-09-21 10:03:45 +02:00
// Zero
Fraction f6 = Fraction(0);
QCOMPARE(f6.getNumerator(), 0);
2021-09-21 10:03:45 +02:00
Fraction f7 = Fraction(0, 3);
QCOMPARE(f7.getNumerator(), 0);
QCOMPARE(f6.getDenominator(), f7.getDenominator());
// Invalid zero fraction
bool threw_divide_by_zero_error = false;
try {
Fraction(2, 0);
} catch (const divide_by_zero_error&) {
threw_divide_by_zero_error = true;
}
QVERIFY(threw_divide_by_zero_error);
2021-09-17 14:47:29 +02:00
}
2021-09-21 10:03:45 +02:00
void FractionTest::test_display() {
2021-09-17 14:47:29 +02:00
// Normal fraction
Fraction f1 = Fraction(1, 2);
QCOMPARE(f1.display(), "1/2");
Fraction f2 = Fraction(1, 3);
QCOMPARE(f2.display(), "1/3");
// Fractions that reduce
Fraction f3 = Fraction(2, 4);
QCOMPARE(f3.display(), "1/2");
Fraction f4 = Fraction(982929, 123456);
QCOMPARE(f4.display(), "327643/41152");
// Negative Fractions
Fraction f5 = Fraction(-5, 2);
QCOMPARE(f5.display(), "-5/2");
2021-09-17 12:32:14 +02:00
}
2021-09-21 10:03:45 +02:00
void FractionTest::test_equivalence() {
2021-09-17 14:47:29 +02:00
Fraction f1 = Fraction(1, 1);
Fraction f2 = Fraction(1, 1);
Fraction f3 = Fraction(-1, 1);
QCOMPARE(f1, f2);
QCOMPARE(f1, 1);
QCOMPARE(f1, 1.0);
QCOMPARE(f1, 1.0f);
QCOMPARE(f2, 1);
QCOMPARE(f2, 1.0);
QCOMPARE(f2, 1.0f);
QCOMPARE(f3, -1);
QCOMPARE(f3, -1.0);
QCOMPARE(f3, -1.0f);
2021-09-20 16:34:45 +02:00
Fraction f4 = Fraction(2, 3);
Fraction f5 = Fraction(-2, 3);
Fraction f6 = Fraction(2, -3);
Fraction f7 = Fraction(-2, -3);
QCOMPARE(f4, f7);
QCOMPARE(f5, f6);
QCOMPARE(f4, 2.0f / 3.0f);
QCOMPARE(f4, 2.0 / 3.0);
2021-09-20 16:34:45 +02:00
QCOMPARE(f7, 2.0f / 3.0f);
QCOMPARE(f7, 2.0 / 3.0);
2021-09-20 16:34:45 +02:00
QCOMPARE(f5, -2.0f / 3.0f);
QCOMPARE(f5, -2.0 / 3.0);
2021-09-20 16:34:45 +02:00
QCOMPARE(f6, -2.0f / 3.0f);
QCOMPARE(f6, -2.0 / 3.0);
2021-09-17 14:47:29 +02:00
}
2021-09-20 16:34:45 +02:00
2021-09-21 10:03:45 +02:00
void FractionTest::test_inequivalence() {
2021-09-17 14:47:29 +02:00
Fraction f1 = Fraction(1, 1);
Fraction f2 = Fraction(-1, 1);
Fraction f3 = Fraction(2, 3);
2021-09-20 16:34:45 +02:00
2021-09-17 14:47:29 +02:00
QVERIFY(f1 != f2);
QVERIFY(f2 != f3);
QVERIFY(f3 != f1);
QVERIFY(f3 != 1);
QVERIFY(f3 != 1.0);
QVERIFY(f3 != 1.0f);
}
2021-09-21 10:03:45 +02:00
void FractionTest::test_addition() {
2021-09-17 14:47:29 +02:00
Fraction f1 = Fraction(1, 2);
2021-09-20 16:34:45 +02:00
QCOMPARE(f1 + 1, 1.5f);
QCOMPARE(f1, 0.5f);
f1 += 1;
2021-09-17 14:47:29 +02:00
QCOMPARE(f1, 1.5);
Fraction f2 = Fraction(1, 2);
2021-09-20 16:34:45 +02:00
QCOMPARE(f2 + 1, 1.5f);
QCOMPARE(f2, 0.5f);
Fraction f3 = Fraction(-2, 9);
QCOMPARE(f3, -(2.0 / 9.0));
QCOMPARE(f3, -(2.0f / 9.0f));
2021-09-20 16:34:45 +02:00
f3 += Fraction(2, 9);
QCOMPARE(f3, 0);
QCOMPARE(f3, 0.0);
QCOMPARE(f3, 0.0f);
}
2021-09-21 10:03:45 +02:00
void FractionTest::test_substraction() {
2021-09-20 16:34:45 +02:00
Fraction f1 = Fraction(11) - 10;
QCOMPARE(f1, 1);
Fraction f2 = Fraction(2, 3);
QCOMPARE(f1 - f2, Fraction(1, 3));
QCOMPARE(f2 - f1, Fraction(-1, 3));
Fraction f3 = Fraction(8, 3);
f3 -= Fraction(2, 3);
QCOMPARE(f3, Fraction(6, 3));
Fraction f4 = Fraction(9, 3);
f4 -= 3;
QCOMPARE(f4, 0);
Fraction f5 = Fraction(8, 3);
// (8/3) - ((2/3) - 1)
//=(8/3) + (1/3)
//= 9/3
//= 3
f5 -= Fraction(2, 3) - 1;
QCOMPARE(f5, 3);
Fraction f6 = Fraction(-2, 199);
// (-2/199) + 8
//=(-2/199) + (1592/199
//=(1590/199)
f6 -= Fraction(-4) - 4;
QCOMPARE(f6, Fraction(1590, 199));
}
2021-09-21 10:03:45 +02:00
void FractionTest::test_multiplication() {
Fraction f1 = Fraction(1, 1);
const Fraction f2 = Fraction(2, 1);
QCOMPARE(f1 * 2, f2);
f1 *= 2;
QCOMPARE(f1, f2);
f1 *= 3;
QCOMPARE(f1, 6);
QCOMPARE(f1 * Fraction(2, 3), 4);
2021-09-17 12:32:14 +02:00
}
2021-09-21 09:30:49 +02:00
void FractionTest::test_division() {
Fraction f1 = Fraction(1, 1);
const Fraction f2 = Fraction(1, 2);
QCOMPARE(f1 / 2, f2);
f1 /= 2;
qDebug() << f1.display();
QCOMPARE(f1, 0.5);
QCOMPARE(f1 / 2, 0.25);
QCOMPARE((f1 / 2) / Fraction(2, 3), Fraction(3, 8));
}
2021-09-21 10:03:45 +02:00
void FractionTest::test_negation() {
const Fraction f1 = Fraction(-1, 2);
const Fraction f2 = Fraction(1, 2);
QCOMPARE(-f1, f2);
QCOMPARE(-f2, f1);
}
void FractionTest::test_unary_plus() {
const Fraction f1 = Fraction(2, 3);
const Fraction f2 = +f1;
QCOMPARE(f1, f2);
// Check that it's actually a new Fraction.
QVERIFY(&f1 != &f2);
}
void FractionTest::test_less_than() {
const Fraction f1 = Fraction(9, 2);
QVERIFY(f1 < 5);
QVERIFY(f1 < 9.0);
QVERIFY(f1 < 6.0f);
QVERIFY(!(f1 < (9.0/2.0)));
QVERIFY(!(f1 < 0));
const Fraction large_positive = Fraction(1000000, 17);
const Fraction positive = Fraction(9, 8);
const Fraction zero = Fraction(0);
const Fraction negative = Fraction(-9, 8);
const Fraction large_negative = Fraction(-1000000, 17);
QVERIFY(large_negative < large_positive);
QVERIFY(negative < large_positive);
QVERIFY(zero < large_positive);
QVERIFY(positive < large_positive);
QVERIFY(!(large_positive < large_positive));
QVERIFY(large_negative < positive);
QVERIFY(negative < positive);
QVERIFY(zero < positive);
QVERIFY(!(positive < positive));
QVERIFY(!(large_positive < positive));
QVERIFY(large_negative < zero);
QVERIFY(negative < zero);
QVERIFY(!(zero < zero));
QVERIFY(!(positive < zero));
QVERIFY(!(large_positive < zero));
QVERIFY(large_negative < negative);
QVERIFY(!(negative < negative));
QVERIFY(!(zero < negative));
QVERIFY(!(positive < negative));
QVERIFY(!(large_positive < negative));
QVERIFY(!(large_negative < large_negative));
QVERIFY(!(negative < large_negative));
QVERIFY(!(zero < large_negative));
QVERIFY(!(positive < large_negative));
QVERIFY(!(large_positive < large_negative));
}
void FractionTest::test_greater_than() {
const Fraction f1 = Fraction(-9, 2);
QVERIFY(f1 > -5);
QVERIFY(f1 > -9.0);
QVERIFY(f1 > -6.0f);
QVERIFY(!(f1 > -(9.0/2.0)));
QVERIFY(!(f1 > 0));
const Fraction large_positive = Fraction(1000000, 17);
const Fraction positive = Fraction(9, 8);
const Fraction zero = Fraction(0);
const Fraction negative = Fraction(-9, 8);
const Fraction large_negative = Fraction(-1000000, 17);
QVERIFY(!(large_negative > large_negative));
QVERIFY(negative > large_negative);
QVERIFY(zero > large_negative);
QVERIFY(positive > large_negative);
QVERIFY(large_positive > large_negative);
QVERIFY(!(large_negative > negative));
QVERIFY(!(negative > negative));
QVERIFY(zero > negative);
QVERIFY(positive > negative);
QVERIFY(large_positive > negative);
QVERIFY(!(large_negative > zero));
QVERIFY(!(negative > zero));
QVERIFY(!(zero > zero));
QVERIFY(positive > zero);
QVERIFY(large_positive > zero);
QVERIFY(!(large_negative > positive));
QVERIFY(!(negative > positive));
QVERIFY(!(zero > positive));
QVERIFY(!(positive > positive));
QVERIFY(large_positive > positive);
QVERIFY(!(large_negative > large_positive));
QVERIFY(!(negative > large_positive));
QVERIFY(!(zero > large_positive));
QVERIFY(!(positive > large_positive));
QVERIFY(!(large_positive > large_positive));
}
2021-09-21 10:12:20 +02:00
void FractionTest::test_less_than_or_equal() {
const Fraction f1 = Fraction(9, 2);
QVERIFY(f1 <= 5);
QVERIFY(f1 <= 9.0);
QVERIFY(f1 <= 6.0f);
QVERIFY(f1 <= (9.0 / 2.0));
QVERIFY(!(f1 <= 0));
const Fraction large_positive = Fraction(1000000, 17);
const Fraction positive = Fraction(9, 8);
const Fraction zero = Fraction(0);
const Fraction negative = Fraction(-9, 8);
const Fraction large_negative = Fraction(-1000000, 17);
QVERIFY(large_negative <= large_positive);
QVERIFY(negative <= large_positive);
QVERIFY(zero <= large_positive);
QVERIFY(positive <= large_positive);
QVERIFY(large_positive <= large_positive);
QVERIFY(large_negative <= positive);
QVERIFY(negative <= positive);
QVERIFY(zero <= positive);
QVERIFY(positive <= positive);
QVERIFY(!(large_positive <= positive));
QVERIFY(large_negative <= zero);
QVERIFY(negative <= zero);
QVERIFY(zero <= zero);
QVERIFY(!(positive <= zero));
QVERIFY(!(large_positive <= zero));
QVERIFY(large_negative <= negative);
QVERIFY(negative <= negative);
QVERIFY(!(zero <= negative));
QVERIFY(!(positive <= negative));
QVERIFY(!(large_positive <= negative));
QVERIFY(large_negative <= large_negative);
QVERIFY(!(negative <= large_negative));
QVERIFY(!(zero <= large_negative));
QVERIFY(!(positive <= large_negative));
QVERIFY(!(large_positive <= large_negative));
}
void FractionTest::test_greater_than_or_equal() {
const Fraction f1 = Fraction(-9, 2);
QVERIFY(f1 >= -5);
QVERIFY(f1 >= -9.0);
QVERIFY(f1 >= -6.0f);
QVERIFY(f1 >= -(9.0 / 2.0));
QVERIFY(!(f1 >= 0));
const Fraction large_positive = Fraction(1000000, 17);
const Fraction positive = Fraction(9, 8);
const Fraction zero = Fraction(0);
const Fraction negative = Fraction(-9, 8);
const Fraction large_negative = Fraction(-1000000, 17);
QVERIFY(large_negative >= large_negative);
QVERIFY(negative >= large_negative);
QVERIFY(zero >= large_negative);
QVERIFY(positive >= large_negative);
QVERIFY(large_positive >= large_negative);
QVERIFY(!(large_negative >= negative));
QVERIFY(negative >= negative);
QVERIFY(zero >= negative);
QVERIFY(positive >= negative);
QVERIFY(large_positive >= negative);
QVERIFY(!(large_negative >= zero));
QVERIFY(!(negative >= zero));
QVERIFY(zero >= zero);
QVERIFY(positive >= zero);
QVERIFY(large_positive >= zero);
QVERIFY(!(large_negative >= positive));
QVERIFY(!(negative >= positive));
QVERIFY(!(zero >= positive));
QVERIFY(positive >= positive);
QVERIFY(large_positive >= positive);
QVERIFY(!(large_negative >= large_positive));
QVERIFY(!(negative >= large_positive));
QVERIFY(!(zero >= large_positive));
QVERIFY(!(positive >= large_positive));
QVERIFY(large_positive >= large_positive);
}
void FractionTest::test_inverse() {
const Fraction f1 = Fraction(3, 2);
const Fraction f2 = Fraction(2, 3);
QCOMPARE(f1.inv(), f2);
QCOMPARE(f2.inv(), f1);
const Fraction f3 = Fraction(0, 2);
bool threw_divide_by_zero_error = false;
try {
f3.inv();
} catch (const divide_by_zero_error&) {
threw_divide_by_zero_error = true;
}
QVERIFY(threw_divide_by_zero_error);
}
2021-09-17 12:32:14 +02:00
QTEST_APPLESS_MAIN(FractionTest)
#include "tst_fractiontest.moc"