-
Notifications
You must be signed in to change notification settings - Fork 0
/
produttorimolteplici_buffernonunitario_buffergiasaturo.c
210 lines (188 loc) · 8.78 KB
/
produttorimolteplici_buffernonunitario_buffergiasaturo.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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
#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;
msg_t* msg_1;
msg_t* msg_2;
msg_t* msg_3;
int checkpoint_0;
int checkpoint_1;
int c;
/* Test Suite setup and cleanup functions: */
/* funzioni init e clean delle suite suite_produttorimolteplici_bufferpieno_bloccante_buffersatura e suite_produttorimolteplici_bufferpieno_nonbloccante_buffersatura */
int init_suite_produttorimolteplici_bufferpieno(void) {
buffer = buffer_init(2);
msg_0 = msg_init_string("messaggio 0"); //messaggio da inserire nel buffer
msg_1 = msg_init_string("messaggio 1"); //messaggio da inserire nel buffer
msg_2 = msg_init_string("messaggio 2");
msg_3 = msg_init_string("messaggio 3");
checkpoint_0 = 0;
checkpoint_1 = 0;
put_bloccante(buffer, msg_0);
put_bloccante(buffer, msg_1);
return 0;
}
int clean_suite_produttorimolteplici_bufferpieno(void) {
msg_destroy_string(msg_0);
msg_destroy_string(msg_1);
msg_destroy_string(msg_2);
msg_destroy_string(msg_3);
buffer_destroy(buffer);
return 0;
}
/************* Test case functions ****************/
/* test della suite suite_produttorimolteplici_bufferpieno_bloccante_buffersatura */
void test_iniziale_semafori_putbloccante_bufferpieno_buffersatura (void){
//verifico lo stato del buffer: vuote=0 e piene=2
int i;
sem_getvalue(&piene, &i);
CU_ASSERT (2 == i);
sem_getvalue(&vuote, &i);
CU_ASSERT (0 == i);
}
void* thread_function_produttore_bloccante_0 (void* arg){
msg_t* msg = (msg_t*) arg;
msg_t* ret_msg_0 = put_bloccante(buffer, msg);
checkpoint_0 = 1;
return (void*) ret_msg_0;
}
void* thread_function_produttore_bloccante_1 (void* arg){
msg_t* msg = (msg_t*) arg;
msg_t* ret_msg_1 = put_bloccante(buffer, msg);
checkpoint_1 = 1;
return (void*) ret_msg_1;
}
void test_produttorimolteplici_putbloccante_bufferpieno_buffersatura(void) {
pthread_t thread0;
pthread_t thread1;
//SOLLECITAZIONE: lancio due thread putbloccante per inserire il loro messaggio nel buffer
pthread_create (&thread0, NULL, thread_function_produttore_bloccante_0, msg_2);
pthread_create (&thread1,NULL,thread_function_produttore_bloccante_1, msg_3);
//verifico che la somma dei checkpoint valga sempre 0; i flussi sono in wait
sleep(SUSPENSIONTIME);
CU_ASSERT_EQUAL (checkpoint_0+checkpoint_1, 0);
//inoltre verifico che il buffer sia intatto
CU_ASSERT_STRING_EQUAL ( (char *)((buffer->buf)[0]).content, (char *)msg_0->content);
CU_ASSERT_STRING_EQUAL ( (char *)((buffer->buf)[1]).content, (char *)msg_1->content);
pthread_cancel(thread0); //se non uccido queasti thread, va in stallo sul buffer init della suitcase successiva, al momento della put
pthread_cancel(thread1);
}
void test_finale_semafori_putbloccante_bufferpieno_buffersatura (void){
//verifico il nuovo stato del buffer: vuote=0 e piene=2
int i;
sem_getvalue(&piene, &i);
CU_ASSERT (2 == i);
sem_getvalue(&vuote, &i);
CU_ASSERT (0 == i);
}
/* test della suite suite_produttorimolteplici_bufferpieno_nonbloccante_buffersatura */
void test_iniziale_semafori_putnonbloccante_bufferpieno_buffersatura (void){
//verifico lo stato del buffer: vuote=0 e piene=2
int i;
sem_getvalue(&piene, &i);
CU_ASSERT (2 == i);
sem_getvalue(&vuote, &i);
CU_ASSERT (0 == i);
}
void* thread_function_produttore_nonbloccante_0 (void* arg){
msg_t* msg = (msg_t*) arg;
msg_t* ret_msg_0 = put_non_bloccante(buffer, msg);
if (ret_msg_0 != NULL)
checkpoint_0 = 1;
return (void*) ret_msg_0;
}
void* thread_function_produttore_nonbloccante_1 (void* arg){
msg_t* msg = (msg_t*) arg;
msg_t* ret_msg_1 = put_non_bloccante(buffer, msg);
if (ret_msg_1 != NULL)
checkpoint_1 = 1;
return (void*) ret_msg_1;
}
void test_produttorimolteplici_putnonbloccante_bufferpieno(void) {
pthread_t thread0;
pthread_t thread1;
msg_t* ret_msg_2;
msg_t* ret_msg_3;
//SOLLECITAZIONE: lancio due thread putbloccante per inserire il loro messaggio nel buffer
pthread_create (&thread0, NULL, thread_function_produttore_nonbloccante_0, msg_2);
pthread_create (&thread1,NULL,thread_function_produttore_nonbloccante_1, msg_3);
pthread_join(thread0,(void*) &ret_msg_2);
pthread_join(thread1,(void*) &ret_msg_3);
//verifico che la somma dei checkpoint valga sempre 0; i due flussi hanno ritornato BUFFER_ERROR
CU_ASSERT_EQUAL (checkpoint_0+checkpoint_1, 0);
CU_ASSERT_EQUAL (ret_msg_2, NULL);
CU_ASSERT_EQUAL (ret_msg_3, NULL);
//inoltre verifico che il buffer sia intatto
CU_ASSERT_STRING_EQUAL ( (char *)((buffer->buf)[0]).content, (char *)msg_0->content);
CU_ASSERT_STRING_EQUAL ( (char *)((buffer->buf)[1]).content, (char *)msg_1->content);
}
void test_finale_semafori_putnonbloccante_bufferpieno_buffersatura (void){
//verifico il nuovo stato del buffer: vuote=0 e piene=2
int i;
sem_getvalue(&piene, &i);
CU_ASSERT (2 == i);
sem_getvalue(&vuote, &i);
CU_ASSERT (0 == i);
}
/************* Test Runner Code goes here **************/
int main ( void )
{
CU_pSuite suite_produttorimolteplici_bufferpieno_bloccante_buffersatura = NULL;
CU_pSuite suite_produttorimolteplici_bufferpieno_nonbloccante_buffersatura = NULL;
/* initialize the CUnit test registry */
if ( CUE_SUCCESS != CU_initialize_registry() )
return CU_get_error();
/* add suite_produttorimolteplici_bufferpieno_bloccante_buffersatura to the registry */
suite_produttorimolteplici_bufferpieno_bloccante_buffersatura = CU_add_suite( "Produzione concorrente di molteplici messaggi in un buffer non unitario pieno; il buffer e' gia' saturo - uso di chiamate bloccanti", init_suite_produttorimolteplici_bufferpieno, clean_suite_produttorimolteplici_bufferpieno );
if ( NULL == suite_produttorimolteplici_bufferpieno_bloccante_buffersatura ) {
CU_cleanup_registry();
return CU_get_error();
}
/* add the tests to the suite suite_produttorimolteplici_bufferpieno_bloccante_buffersatura */
if ( (NULL == CU_add_test(suite_produttorimolteplici_bufferpieno_bloccante_buffersatura, "Stato del buffer: Valutazione iniziale dei semafori", test_iniziale_semafori_putbloccante_bufferpieno_buffersatura)) ||
(NULL == CU_add_test(suite_produttorimolteplici_bufferpieno_bloccante_buffersatura, "Lancio dei due thread produttori", test_produttorimolteplici_putbloccante_bufferpieno_buffersatura)) ||
(NULL == CU_add_test(suite_produttorimolteplici_bufferpieno_bloccante_buffersatura, "Stato del buffer: Valutazione finale dei semafori", test_finale_semafori_putbloccante_bufferpieno_buffersatura))
)
{
CU_cleanup_registry();
return CU_get_error();
}
/* add suite_produttorimolteplici_bufferpieno_nonbloccante_buffersatura to the registry */
suite_produttorimolteplici_bufferpieno_nonbloccante_buffersatura = CU_add_suite( "Produzione concorrente di molteplici messaggi in un buffer non unitario pieno; il buffer e' gia' saturo - uso di chiamate non bloccanti", init_suite_produttorimolteplici_bufferpieno, clean_suite_produttorimolteplici_bufferpieno);
if ( NULL == suite_produttorimolteplici_bufferpieno_nonbloccante_buffersatura ) {
CU_cleanup_registry();
return CU_get_error();
}
/* add the tests to the suite suite_produttorimolteplici_bufferpieno_nonbloccante_buffersatura */
if ( (NULL == CU_add_test(suite_produttorimolteplici_bufferpieno_nonbloccante_buffersatura, "Stato del buffer: Valutazione iniziale dei semafori", test_iniziale_semafori_putnonbloccante_bufferpieno_buffersatura)) ||
(NULL == CU_add_test(suite_produttorimolteplici_bufferpieno_nonbloccante_buffersatura, "Lancio dei due thread produttori", test_produttorimolteplici_putnonbloccante_bufferpieno)) ||
(NULL == CU_add_test(suite_produttorimolteplici_bufferpieno_nonbloccante_buffersatura, "Stato del buffer: Valutazione finale dei semafori", test_finale_semafori_putnonbloccante_bufferpieno_buffersatura))
)
{
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();
}