1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
// -*- c-basic-offset: 4 -*-
#include "NotationTypes.h"
using namespace Rosegarden;
using std::cout;
// Unit test-ish tests for resolving accidentals
//
// Returns -1 (or crashes :)) on error, 0 on success
int assertHasAccidental(Pitch &pitch,
const Accidental& accidental, const Key& key)
{
Accidental calculatedAccidental =
pitch.getAccidental(key);
std::cout << "Got " << calculatedAccidental << " for pitch " << pitch.getPerformancePitch() << " in key " << key.getName() << std::endl;
if (calculatedAccidental != accidental) {
std::cout << "Expected " << accidental << std::endl;
return -1;
}
return 0;
}
int testBInEMinor()
{
// a B, also in E minor, has no accidental
Pitch testPitch(59 % 12);
return assertHasAccidental(testPitch,
Accidentals::NoAccidental, Key("E minor"));
}
/**
*
*/
int testFInBMinor()
{
Pitch testPitch(77);
return assertHasAccidental(testPitch,
Accidentals::NoAccidental, Key("B minor"));
}
int testInvalidSuggestion()
{
// If we specify an invalid suggestion,
// getAccidental() should be robust against that.
Pitch testPitch = Pitch(59, Accidentals::Sharp);
return assertHasAccidental(testPitch,
Accidentals::NoAccidental, Key("E minor"));
}
int testBbinBb()
{
Pitch testPitch = Pitch(10, Accidentals::NoAccidental);
Accidental accidental = testPitch.getAccidental(Key("Bb major"));
std::cout << "Bb accidental: " << accidental << std::endl;
if (accidental != Accidentals::Flat)
{
return -1;
}
return 0;
}
// Verifies that the height on staff for pitch 61 using flats is -1, not -2
int testDesHeight()
{
bool useSharps = false;
Pitch pitch(61);
int h = pitch.getHeightOnStaff(Clef(Clef::Treble, 0), useSharps);
if (h != -1)
{
std::cerr << "Error in testDesHeight: expected height -1, got " << h << std::endl;
return -1;
}
return 0;
}
int test_accidentals(int argc, char **argv)
{
return testBInEMinor() +
testFInBMinor() +
testInvalidSuggestion() +
testBbinBb() +
testDesHeight();
}
|