36 lines
1.1 KiB
C
36 lines
1.1 KiB
C
#include <cutter.h>
|
|
|
|
#include <freefare.h>
|
|
|
|
void
|
|
test_mifare_classic_application (void)
|
|
{
|
|
/* Card publisher part */
|
|
|
|
MadAid aid = { 0x22, 0x42 };
|
|
Mad mad = mad_new (2);
|
|
cut_assert_not_null (mad, cut_message ("mad_new() failed"));
|
|
|
|
MifareSectorNumber *s_alloc = mifare_application_alloc (mad, aid, 3);
|
|
cut_assert_not_null (s_alloc, cut_message ("mifare_application_alloc() failed"));
|
|
|
|
MifareSectorNumber *s_found = mifare_application_find (mad, aid);
|
|
cut_assert_not_null (s_found, cut_message ("mifare_application_alloc() failed"));
|
|
|
|
for (int i = 0; i < 3; i++) {
|
|
cut_assert_equal_int (s_alloc[i], s_found[i], cut_message ("Allocated and foudn blocks don't match"));
|
|
}
|
|
|
|
cut_assert_equal_int (0, s_alloc[3], cut_message ("Invalid size"));
|
|
cut_assert_equal_int (0, s_found[3], cut_message ("Invalid size"));
|
|
|
|
mifare_application_free (mad, aid);
|
|
|
|
free (s_alloc);
|
|
free (s_found);
|
|
|
|
s_found = mifare_application_find (mad, aid);
|
|
cut_assert_null (s_found, cut_message ("mifare_application_free() failed"));
|
|
|
|
mad_free (mad);
|
|
}
|