2004-08-21 00:03:30 +00:00
|
|
|
|
|
|
|
/*---
|
|
|
|
This software is copyrighted by the Regents of the University of
|
|
|
|
California, and other parties. The following terms apply to all files
|
|
|
|
associated with the software unless explicitly disclaimed in
|
|
|
|
individual files.
|
|
|
|
|
|
|
|
The authors hereby grant permission to use, copy, modify, distribute,
|
|
|
|
and license this software and its documentation for any purpose,
|
|
|
|
provided that existing copyright notices are retained in all copies
|
|
|
|
and that this notice is included verbatim in any distributions. No
|
|
|
|
written agreement, license, or royalty fee is required for any of the
|
|
|
|
authorized uses. Modifications to this software may be copyrighted by
|
|
|
|
their authors and need not follow the licensing terms described here,
|
|
|
|
provided that the new terms are clearly indicated on the first page of
|
|
|
|
each file where they apply.
|
|
|
|
|
|
|
|
IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
|
|
|
|
FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
|
|
|
|
ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
|
|
|
|
DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
|
|
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
|
|
|
|
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND
|
|
|
|
NON-INFRINGEMENT. THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, AND
|
|
|
|
THE AUTHORS AND DISTRIBUTORS HAVE NO OBLIGATION TO PROVIDE
|
|
|
|
MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
|
|
|
|
|
|
GOVERNMENT USE: If you are acquiring this software on behalf of the
|
|
|
|
U.S. government, the Government shall have only "Restricted Rights" in
|
|
|
|
the software and related documentation as defined in the Federal
|
|
|
|
Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you are
|
|
|
|
acquiring the software on behalf of the Department of Defense, the
|
|
|
|
software shall be classified as "Commercial Computer Software" and the
|
|
|
|
Government shall have only "Restricted Rights" as defined in Clause
|
|
|
|
252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the
|
|
|
|
authors grant the U.S. Government and others acting in its behalf
|
|
|
|
permission to use and distribute the software in accordance with the
|
|
|
|
terms specified in this license.
|
|
|
|
---*/
|
2009-04-14 20:21:05 +00:00
|
|
|
#include "../check_includes.h"
|
2004-08-21 00:03:30 +00:00
|
|
|
|
2008-04-13 04:02:57 +00:00
|
|
|
#include <stasis/page.h>
|
2007-06-11 21:36:57 +00:00
|
|
|
#include <stasis/bufferManager.h>
|
|
|
|
#include <stasis/transactional.h>
|
|
|
|
#include <stasis/truncation.h>
|
|
|
|
#include <stasis/logger/logger2.h>
|
2008-04-13 04:02:57 +00:00
|
|
|
#include <stasis/latches.h>
|
2009-04-14 20:21:05 +00:00
|
|
|
|
2004-08-21 00:03:30 +00:00
|
|
|
#include <sched.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#define LOG_NAME "check_pageOperations.log"
|
|
|
|
|
|
|
|
START_TEST(pageOpCheckRecovery) {
|
|
|
|
Tinit();
|
|
|
|
|
2008-11-13 00:06:35 +00:00
|
|
|
DEBUG("%s:%d numactive = %d\n",__FILE__,__LINE__, TactiveTransactionCount());
|
|
|
|
|
2004-08-21 00:03:30 +00:00
|
|
|
int xid = Tbegin();
|
|
|
|
|
2008-11-13 00:06:35 +00:00
|
|
|
DEBUG("%s:%d numactive = %d\n",__FILE__,__LINE__, TactiveTransactionCount());
|
|
|
|
|
2004-08-21 00:03:30 +00:00
|
|
|
int pageid1 = TpageAlloc(xid);
|
|
|
|
|
|
|
|
int pageid2 = TpageAlloc(xid);
|
2008-09-28 03:11:24 +00:00
|
|
|
|
|
|
|
assert(pageid1 != pageid2);
|
|
|
|
|
2004-08-21 00:03:30 +00:00
|
|
|
Page p;
|
2008-09-28 03:11:24 +00:00
|
|
|
byte memAddr[USABLE_SIZE_OF_PAGE];
|
2004-08-21 00:03:30 +00:00
|
|
|
|
|
|
|
p.memAddr = memAddr;
|
|
|
|
|
2008-09-28 03:11:24 +00:00
|
|
|
memset(p.memAddr, 1, USABLE_SIZE_OF_PAGE);
|
2007-07-19 16:34:18 +00:00
|
|
|
// Reset the page type after overwriting it with memset. Otherwise, Stasis
|
|
|
|
// will try to interpret it when it flushes the page to disk.
|
2009-07-07 19:20:22 +00:00
|
|
|
p.pageType = 0;
|
2004-08-21 00:03:30 +00:00
|
|
|
|
2008-09-28 03:11:24 +00:00
|
|
|
TpageSetRange(xid, pageid1, 0, p.memAddr, USABLE_SIZE_OF_PAGE);
|
2004-08-21 00:03:30 +00:00
|
|
|
|
2008-09-28 03:11:24 +00:00
|
|
|
memset(p.memAddr, 2, USABLE_SIZE_OF_PAGE);
|
2004-08-21 00:03:30 +00:00
|
|
|
|
2008-09-28 03:11:24 +00:00
|
|
|
TpageSetRange(xid, pageid2, 0, p.memAddr, USABLE_SIZE_OF_PAGE);
|
2008-11-13 00:06:35 +00:00
|
|
|
|
|
|
|
DEBUG("%s:%d numactive = %d\n",__FILE__,__LINE__, TactiveTransactionCount());
|
|
|
|
|
2004-08-21 00:03:30 +00:00
|
|
|
Tcommit(xid);
|
|
|
|
|
2008-11-13 00:06:35 +00:00
|
|
|
DEBUG("%s:%d numactive = %d\n",__FILE__,__LINE__, TactiveTransactionCount());
|
|
|
|
|
2004-08-21 00:03:30 +00:00
|
|
|
xid = Tbegin();
|
|
|
|
|
2008-11-13 00:06:35 +00:00
|
|
|
DEBUG("%s:%d numactive = %d\n",__FILE__,__LINE__, TactiveTransactionCount());
|
|
|
|
|
2008-09-28 03:11:24 +00:00
|
|
|
int pageid_dead = TpageAlloc(xid); /* This test doesn't check for leaks, so we don't need to remember this pageid. */
|
|
|
|
|
|
|
|
assert(pageid_dead != pageid1);
|
|
|
|
assert(pageid_dead != pageid2);
|
|
|
|
|
2004-08-21 00:03:30 +00:00
|
|
|
TpageDealloc(xid, pageid1);
|
|
|
|
TpageDealloc(xid, pageid2);
|
2007-07-19 23:47:06 +00:00
|
|
|
TuncleanShutdown();
|
2006-04-14 03:45:26 +00:00
|
|
|
|
2008-11-13 00:06:35 +00:00
|
|
|
DEBUG("%s:%d numactive = %d\n",__FILE__,__LINE__, TactiveTransactionCount());
|
|
|
|
|
2004-08-21 00:03:30 +00:00
|
|
|
Tinit();
|
|
|
|
|
2008-11-13 00:06:35 +00:00
|
|
|
DEBUG("%s:%d numactive = %d\n",__FILE__,__LINE__, TactiveTransactionCount());
|
|
|
|
|
2004-08-21 00:03:30 +00:00
|
|
|
xid = Tbegin();
|
2008-11-13 00:06:35 +00:00
|
|
|
|
|
|
|
DEBUG("%s:%d numactive = %d\n",__FILE__,__LINE__, TactiveTransactionCount());
|
2009-04-14 20:21:05 +00:00
|
|
|
|
2004-08-21 00:03:30 +00:00
|
|
|
int pageid3 = TpageAlloc(xid);
|
2008-09-28 03:11:24 +00:00
|
|
|
|
|
|
|
assert(pageid1 != pageid3);
|
|
|
|
assert(pageid2 != pageid3);
|
|
|
|
|
|
|
|
memset(p.memAddr, 3, USABLE_SIZE_OF_PAGE);
|
|
|
|
TpageSetRange(xid, pageid3, 0, p.memAddr, USABLE_SIZE_OF_PAGE);
|
2004-08-21 00:03:30 +00:00
|
|
|
|
2008-09-28 03:11:24 +00:00
|
|
|
byte newAddr[USABLE_SIZE_OF_PAGE];
|
2004-08-21 00:03:30 +00:00
|
|
|
|
2008-09-28 03:11:24 +00:00
|
|
|
memset(p.memAddr, 1, USABLE_SIZE_OF_PAGE);
|
2004-08-21 00:03:30 +00:00
|
|
|
TpageGet(xid, pageid1, newAddr);
|
2008-09-28 03:11:24 +00:00
|
|
|
assert(!memcmp(p.memAddr, newAddr, USABLE_SIZE_OF_PAGE));
|
2004-08-21 00:03:30 +00:00
|
|
|
|
2008-09-28 03:11:24 +00:00
|
|
|
memset(p.memAddr, 2, USABLE_SIZE_OF_PAGE);
|
2004-08-21 00:03:30 +00:00
|
|
|
TpageGet(xid, pageid2, newAddr);
|
2008-09-28 03:11:24 +00:00
|
|
|
assert(!memcmp(p.memAddr, newAddr, USABLE_SIZE_OF_PAGE));
|
2004-08-21 00:03:30 +00:00
|
|
|
|
2008-09-28 03:11:24 +00:00
|
|
|
memset(p.memAddr, 3, USABLE_SIZE_OF_PAGE);
|
2004-08-21 00:03:30 +00:00
|
|
|
TpageGet(xid, pageid3, newAddr);
|
2008-09-28 03:11:24 +00:00
|
|
|
assert(!memcmp(p.memAddr, newAddr, USABLE_SIZE_OF_PAGE));
|
2004-08-21 00:03:30 +00:00
|
|
|
Tcommit(xid);
|
2008-11-13 00:06:35 +00:00
|
|
|
|
|
|
|
DEBUG("%s:%d numactive = %d\n",__FILE__,__LINE__, TactiveTransactionCount());
|
|
|
|
|
2004-08-21 00:03:30 +00:00
|
|
|
Tdeinit();
|
|
|
|
|
2008-11-13 00:06:35 +00:00
|
|
|
DEBUG("%s:%d numactive = %d\n",__FILE__,__LINE__, TactiveTransactionCount());
|
|
|
|
|
2004-08-21 00:03:30 +00:00
|
|
|
} END_TEST
|
|
|
|
|
|
|
|
/**
|
|
|
|
@test
|
|
|
|
*/
|
|
|
|
|
|
|
|
START_TEST(pageOpCheckAllocDealloc) {
|
2008-02-20 22:50:19 +00:00
|
|
|
/*
|
2004-08-21 00:03:30 +00:00
|
|
|
Tinit();
|
|
|
|
|
|
|
|
int xid = Tbegin();
|
|
|
|
|
|
|
|
int pageid = TpageAllocMany(xid, 100);
|
|
|
|
|
|
|
|
fail_unless(pageid == 1, NULL);
|
|
|
|
|
|
|
|
pageid = TpageAlloc(xid);
|
|
|
|
fail_unless(pageid == 101, NULL);
|
|
|
|
|
|
|
|
TpageDealloc(xid, 52);
|
2009-04-14 20:21:05 +00:00
|
|
|
|
2004-08-21 00:03:30 +00:00
|
|
|
pageid = TpageAlloc(xid);
|
|
|
|
|
|
|
|
fail_unless(pageid == 52, NULL);
|
|
|
|
printf("\nA\n"); fflush(NULL);
|
|
|
|
Tcommit(xid);
|
|
|
|
xid = Tbegin();
|
|
|
|
printf("\nEverything below this aborts\n"); fflush(NULL);
|
|
|
|
for(int i = 1; i < 102; i++) {
|
|
|
|
TpageDealloc(xid, i);
|
|
|
|
}
|
|
|
|
printf("\nB\n"); fflush(NULL);
|
|
|
|
for(int i = 0; i < 50; i++) {
|
|
|
|
pageid = TpageAlloc(xid);
|
|
|
|
assert(pageid < 102);
|
|
|
|
}
|
|
|
|
printf("\nC - aborting\n"); fflush(NULL);
|
|
|
|
Tabort(xid);
|
|
|
|
printf("\nD - aborted\n"); fflush(NULL);
|
|
|
|
xid = Tbegin();
|
|
|
|
|
|
|
|
pageid = TpageAlloc(xid);
|
|
|
|
printf("\nE\n"); fflush(NULL);
|
|
|
|
fail_unless(pageid == 102, NULL);
|
|
|
|
|
|
|
|
Tcommit(xid);
|
|
|
|
|
|
|
|
Tdeinit();
|
2008-02-20 22:50:19 +00:00
|
|
|
*/
|
|
|
|
// printf(" Skipping 1 check for page leaks since page reuse is diabled.\n");
|
2004-08-21 00:03:30 +00:00
|
|
|
|
|
|
|
} END_TEST
|
|
|
|
|
|
|
|
Suite * check_suite(void) {
|
|
|
|
Suite *s = suite_create("pageOperations");
|
|
|
|
/* Begin a new test */
|
|
|
|
TCase *tc = tcase_create("pageOperations");
|
|
|
|
|
|
|
|
/* Sub tests are added, one per line, here */
|
|
|
|
|
|
|
|
tcase_add_test(tc, pageOpCheckAllocDealloc);
|
2009-04-14 20:21:05 +00:00
|
|
|
if(LOG_TO_MEMORY != stasis_log_type) {
|
2006-04-07 03:40:40 +00:00
|
|
|
tcase_add_test(tc, pageOpCheckRecovery);
|
|
|
|
}
|
2004-08-21 00:03:30 +00:00
|
|
|
/* --------------------------------------------- */
|
2009-04-14 20:21:05 +00:00
|
|
|
|
2004-08-21 00:03:30 +00:00
|
|
|
tcase_add_checked_fixture(tc, setup, teardown);
|
|
|
|
|
|
|
|
suite_add_tcase(s, tc);
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
#include "../check_setup.h"
|