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
|
#include <cppunit/extensions/HelperMacros.h>
#include "../mmap.h"
#include <time.h>
#include <stdlib.h>
#include <stdio.h>
using namespace std; // for std::min
int g_display_errors = 1;
FILE *g_output = stderr;
void quit() {
fprintf(g_output, "MMap quit\n");
}
class MMapTest : public CppUnit::TestFixture {
CPPUNIT_TEST_SUITE( MMapTest );
CPPUNIT_TEST( testMMapFile );
CPPUNIT_TEST_SUITE_END();
public:
void testMMapFile() {
size_t i;
const int BUF_SIZE = 50000; // 50MB
// resize
MMapFile mmap;
mmap.resize(BUF_SIZE);
CPPUNIT_ASSERT_EQUAL( BUF_SIZE, mmap.getsize() );
// set content
char *buf = (char *) mmap.get(0, BUF_SIZE);
for (i = 0; i < BUF_SIZE; i++) {
buf[i] = i % 256;
}
mmap.release();
// test content and get(), getmore()
srand(time(NULL));
for (i = 0; i < 100; i++) {
int offset1 = rand() % BUF_SIZE;
int size1 = rand() % (BUF_SIZE - offset1);
char *p1 = (char *) mmap.get(offset1, size1);
int offset2 = rand() % BUF_SIZE;
int size2 = rand() % (BUF_SIZE - offset2);
char *p2 = (char *) mmap.getmore(offset2, size2);
int j;
for (j = 0; j < size1; j++) {
CPPUNIT_ASSERT_EQUAL( p1[j], char((offset1 + j) % 256) );
}
for (j = 0; j < size2; j++) {
CPPUNIT_ASSERT_EQUAL( p2[j], char((offset2 + j) % 256) );
}
mmap.release();
mmap.release(p2, size2);
}
}
};
CPPUNIT_TEST_SUITE_REGISTRATION( MMapTest );
|