-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunitTesting.c
executable file
·109 lines (88 loc) · 3.1 KB
/
unitTesting.c
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
#include "./Vector/vector.h"
#include "./hashTable/hashTableList/hashTableList.h"
#include "./LSH/lsh.h"
#include "./FrechetDistance/discreteFrechet.h"
//////////////////////////////////////////////////
#include "CUnit/Basic.h"
typedef struct gfunc g_function;
int init_suite1(void){
return 0;
}
int clean_suite1(void){
return 0;
}
int k_LSH=5;
int hashTableSize=100;
int w=6;
void test_gFunction(void){
// Tests the g function of LSH if finds the same value between two similar vectors
int dim=5;
double coords1[5]={3.53,7.56,13.34,54.33,10.02};
double coords2[5]={3.4,7.7,13.5,54.5,10};
Vector vec1=initVector(coords1,"1",dim);
Vector vec2=initVector(coords2,"2",dim);
unsigned int temp=-1;
LSH lsh = initializeLSH(5,dim);
CU_ASSERT(getValueOfFirstGFun(lsh,vec1,&temp)==getValueOfFirstGFun(lsh,vec2,&temp));
deleteVector(vec1);
deleteVector(vec2);
destroyLSH(lsh);
}
void test_discreteFrechet(void){
// Tests the discreteFrechet() if finds the correct distance between two following curves
int dim=5;
double coords1[5]={0,0,0,0,0};
double coords2[5]={1.0,1.1,1.2,1.1,1.0};
double time[5]={1,2,3,4,5};
Vector timeSeries1=initTimeSeries(coords1,time,"1",dim);
Vector timeSeries2=initTimeSeries(coords2,time,"2",dim);
CU_ASSERT(1.2 == discreteFrechet(timeSeries1,timeSeries2));
deleteVector(timeSeries1);
deleteVector(timeSeries2);
}
void test_meanCurveBetween2Curves(void){
// Tests the meanCurveBetween2Curves() if finds the correct mean curve
int dim=5;
double coords1[5]={0,0,0,0,0};
double coords2[5]={1.0,1.1,1.2,1.1,1.0};
double meanCoords[5]={0.5,0.55,0.6,0.55,0.5};
double time[5]={1,2,3,4,5};
Vector timeSeries1=initTimeSeries(coords1,time,"1",dim);
Vector timeSeries2=initTimeSeries(coords2,time,"2",dim);
Vector realMean=initTimeSeries(meanCoords,time,"real",dim);
Vector test = meanCurveBetween2Curves(timeSeries1,timeSeries2);
CU_ASSERT(compareTimeSeries(test,realMean) == 1);
deleteVector(timeSeries1);
deleteVector(timeSeries2);
deleteVector(realMean);
deleteVector(test);
}
char *distanceMetric;
int main(int argc, char *argv[]) {
CU_pSuite pSuite = NULL;
/* initialize the CUnit test registry */
if (CUE_SUCCESS != CU_initialize_registry())
return CU_get_error();
/* add a suite to the registry */
pSuite = CU_add_suite("Suite_1", init_suite1, clean_suite1);
if (NULL == pSuite) {
CU_cleanup_registry();
return CU_get_error();
}
/* add the tests to the suite */
if ((NULL == CU_add_test(pSuite, "test of Discrete Frechet Distance", test_discreteFrechet)) ||
(NULL == CU_add_test(pSuite, "test of Mean Curve Between 2 Curves", test_meanCurveBetween2Curves) ||
NULL == CU_add_test(pSuite, "test of G function of LSH", test_gFunction) )){
CU_cleanup_registry();
return CU_get_error();
}
CU_basic_set_mode(CU_BRM_VERBOSE);
CU_basic_run_tests();
CU_cleanup_registry();
return CU_get_error();
}