-
Notifications
You must be signed in to change notification settings - Fork 0
/
produttoreunico_consumatoreunico_bufferpieno_consumatorefirst.c
192 lines (169 loc) · 8.96 KB
/
produttoreunico_consumatoreunico_bufferpieno_consumatorefirst.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
#include "CUnit/CUnit.h"
#include "CUnit/Basic.h"
//#include "CUnit/Automated.h"
//#include "CUnit/Console.h"
#include <pthread.h>
#include <semaphore.h>
#include "hwc1.c"
#include <stdio.h>
#define SUSPENSIONTIME 3
buffer_t* buffer;
msg_t* msg_0;
/* Test Suite setup and cleanup functions: */
/* funzioni init e clean delle suite suite_produttoreunico_consumatoreunico_bufferpieno_consumatorefirst_bloccante e suite_produttoreunico_consumatoreunico_bufferpieno_consumatorefirst_nonbloccante */
int init_suite_produttoreunico_consumatoreunico_bufferpieno_consumatorefirst(void) {
buffer = buffer_init(1);
msg_t* msg = msg_init_string("messaggio 0");
msg_0 = put_bloccante(buffer, msg); //già testata
return 0;
}
int clean_suite_produttoreunico_consumatoreunico_bufferpieno_consumatorefirst(void) {
buffer_destroy(buffer);
return 0;
}
/************* Test case functions ****************/
/* test della suite suite_produttoreunico_consumatoreunico_bufferpieno_consumatorefirst_bloccante */
void test_iniziale_semafori_bloccante_bufferpieno (void){
//verifico lo stato del buffer: vuote=0 e piene=1
int i;
sem_getvalue(&piene, &i);
CU_ASSERT (1 == i);
sem_getvalue(&vuote, &i);
CU_ASSERT (0 == i);
}
void* thread_function_produttore_bloccante (void* arg){
msg_t* msg = (msg_t*) arg;
msg_t* msg_1 = put_bloccante(buffer, msg);
return (void*) msg_1;
}
void* thread_function_consumatore_bloccante (void* arg){
msg_t* msg = get_bloccante(buffer);
return (void*) msg;
}
void test_consumatoreunico_produttoreunico_putbloccante_getbloccante_bufferpieno_consumatorefirst(void) {
pthread_t mythreadP;
pthread_t mythreadC;
msg_t* ret_msg_1;
msg_t* ret_msg_0;
msg_t* msg_1 = msg_init_string("messaggio 1");
CU_ASSERT_STRING_EQUAL (((char *)msg_1->content), "messaggio 1");
//lancio la get per prima, poi la put
pthread_create (&mythreadC,NULL,thread_function_consumatore_bloccante, NULL);
sleep(SUSPENSIONTIME); //per imporre la seq di interleaving in cui il consumatore è primo
pthread_create (&mythreadP, NULL, thread_function_produttore_bloccante, msg_1);
pthread_join(mythreadC,(void*) &ret_msg_0);
pthread_join(mythreadP,(void*) &ret_msg_1);
//verifico che il messaggio estratto dal buffer sia quello atteso
CU_ASSERT_STRING_EQUAL (((char *)ret_msg_0->content), ((char *)msg_0->content)); //dovrebbe restituire messaggio 0
//verifico che il messaggio inserito nel buffer sia quello atteso
CU_ASSERT_STRING_EQUAL ((char *)((buffer->buf)[0]).content, ((char *)msg_1->content));
CU_ASSERT_STRING_EQUAL (((char *)ret_msg_1->content), ((char *)msg_1->content));
}
void test_finale_semafori_bloccante_bufferpieno (void){
//verifico il nuovo stato del buffer: vuote=0 e piene=1
int i;
sem_getvalue(&piene, &i);
CU_ASSERT (1 == i);
sem_getvalue(&vuote, &i);
CU_ASSERT (0 == i);
}
/* test della suite suite_produttoreunico_consumatoreunico_bufferpieno_consumatorefirst_nonbloccante */
void test_iniziale_semafori_nonbloccante_buffervuoto (void){
//verifico lo stato del buffer: vuote=0 e piene=1
int i;
sem_getvalue(&piene, &i);
CU_ASSERT (1 == i);
sem_getvalue(&vuote, &i);
CU_ASSERT (0 == i);
}
void* thread_function_produttore_nonbloccante (void* arg){
msg_t* msg = (msg_t*) arg;
msg_t* msg_1 = put_non_bloccante(buffer, msg);
return (void*) msg_1;
}
void* thread_function_consumatore_nonbloccante (void* arg){
msg_t* msg = get_non_bloccante(buffer);
return (void*) msg;
}
void test_consumatoreunico_produttoreunico_putnonbloccante_getnonbloccante_bufferpieno_consumatorefirst(void) {
pthread_t mythreadP;
pthread_t mythreadC;
msg_t* ret_msg_1;
msg_t* ret_msg_0;
msg_t* msg_1 = msg_init_string("messaggio 1");
CU_ASSERT_STRING_EQUAL (((char *)msg_1->content), "messaggio 1");
//lancio la get per prima, poi la put
pthread_create (&mythreadC,NULL,thread_function_consumatore_nonbloccante, NULL);
sleep(SUSPENSIONTIME); // devo introdurlo per imporre la specifica del test "prima il consumatore"
pthread_create (&mythreadP, NULL, thread_function_produttore_nonbloccante, msg_1);
pthread_join(mythreadC,(void*) &ret_msg_0);
pthread_join(mythreadP,(void*) &ret_msg_1);
//verifico che il messaggio estratto dal buffer sia quello atteso
CU_ASSERT_STRING_EQUAL (((char *)ret_msg_0->content), ((char *)msg_0->content)); //dovrebbe restituire messaggio 0
//verifico che il messaggio inserito nel buffer sia quello atteso
CU_ASSERT_STRING_EQUAL ((char *)((buffer->buf)[0]).content, ((char *)msg_1->content));
CU_ASSERT_STRING_EQUAL (((char *)ret_msg_1->content), ((char *)msg_1->content));
}
void test_finale_semafori_nonbloccante_buffervuoto (void){
//verifico il nuovo stato del buffer: vuote=0 e piene=1
int i;
sem_getvalue(&piene, &i);
CU_ASSERT (1 == i);
sem_getvalue(&vuote, &i);
CU_ASSERT (0 == i);
}
/************* Test Runner Code goes here **************/
int main ( void )
{
CU_pSuite suite_produttoreunico_consumatoreunico_bufferpieno_consumatorefirst_bloccante = NULL;
CU_pSuite suite_produttoreunico_consumatoreunico_bufferpieno_consumatorefirst_nonbloccante = NULL;
/* initialize the CUnit test registry */
if ( CUE_SUCCESS != CU_initialize_registry() )
return CU_get_error();
/* add suite_produttoreunico_consumatoreunico_bufferpieno_consumatorefirst_bloccante to the registry */
suite_produttoreunico_consumatoreunico_bufferpieno_consumatorefirst_bloccante = CU_add_suite( "Consumazione e produzione concorrente di un messaggio da un buffer unitario; prima il consumatore - uso di chiamate bloccanti", init_suite_produttoreunico_consumatoreunico_bufferpieno_consumatorefirst, clean_suite_produttoreunico_consumatoreunico_bufferpieno_consumatorefirst );
if ( NULL == suite_produttoreunico_consumatoreunico_bufferpieno_consumatorefirst_bloccante ) {
CU_cleanup_registry();
return CU_get_error();
}
/* add the tests to the suite suite_produttoreunico_consumatoreunico_bufferpieno_consumatorefirst_bloccante */
if ( (NULL == CU_add_test(suite_produttoreunico_consumatoreunico_bufferpieno_consumatorefirst_bloccante, "Stato del buffer: Valutazione iniziale dei semafori", test_iniziale_semafori_bloccante_bufferpieno)) ||
(NULL == CU_add_test(suite_produttoreunico_consumatoreunico_bufferpieno_consumatorefirst_bloccante, "Prima estrazione di un messaggio e poi produzione di un messaggio", test_consumatoreunico_produttoreunico_putbloccante_getbloccante_bufferpieno_consumatorefirst)) ||
(NULL == CU_add_test(suite_produttoreunico_consumatoreunico_bufferpieno_consumatorefirst_bloccante, "Stato del buffer: Valutazione finale dei semafori", test_finale_semafori_bloccante_bufferpieno))
)
{
CU_cleanup_registry();
return CU_get_error();
}
/* add suite_produttoreunico_consumatoreunico_bufferpieno_consumatorefirst_nonbloccante to the registry */
suite_produttoreunico_consumatoreunico_bufferpieno_consumatorefirst_nonbloccante = CU_add_suite( "Consumazione e produzione concorrente di un messaggio da un buffer unitario; prima il consumatore - uso di chiamate non bloccanti", init_suite_produttoreunico_consumatoreunico_bufferpieno_consumatorefirst, clean_suite_produttoreunico_consumatoreunico_bufferpieno_consumatorefirst);
if ( NULL == suite_produttoreunico_consumatoreunico_bufferpieno_consumatorefirst_nonbloccante ) {
CU_cleanup_registry();
return CU_get_error();
}
/* add the tests to the suite suite_produttoreunico_consumatoreunico_bufferpieno_consumatorefirst_nonbloccante */
if ( (NULL == CU_add_test(suite_produttoreunico_consumatoreunico_bufferpieno_consumatorefirst_nonbloccante, "Stato del buffer: Valutazione iniziale dei semafori", test_iniziale_semafori_nonbloccante_buffervuoto)) ||
(NULL == CU_add_test(suite_produttoreunico_consumatoreunico_bufferpieno_consumatorefirst_nonbloccante, "Prima estrazione di un messaggio e poi produzione di un messaggio", test_consumatoreunico_produttoreunico_putnonbloccante_getnonbloccante_bufferpieno_consumatorefirst)) ||
(NULL == CU_add_test(suite_produttoreunico_consumatoreunico_bufferpieno_consumatorefirst_nonbloccante, "Stato del buffer: Valutazione finale dei semafori", test_finale_semafori_nonbloccante_buffervuoto))
)
{
CU_cleanup_registry();
return CU_get_error();
}
// Run all tests using the basic interface
CU_basic_set_mode(CU_BRM_VERBOSE);
CU_basic_run_tests();
printf("\n");
CU_basic_show_failures(CU_get_failure_list());
printf("\n\n");
/*
// Run all tests using the automated interface
CU_automated_run_tests();
CU_list_tests_to_file();
// Run all tests using the console interface
CU_console_run_tests();
*/
/* Clean up registry and return */
CU_cleanup_registry();
return CU_get_error();
}