Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of https://github.com/Onesphore/simgrid into Onesphore-master
authorMartin Quinson <martin.quinson@loria.fr>
Wed, 4 Jul 2018 07:55:33 +0000 (09:55 +0200)
committerMartin Quinson <martin.quinson@loria.fr>
Wed, 4 Jul 2018 07:55:33 +0000 (09:55 +0200)
1  2 
src/mc/remote/RemoteClient.cpp
src/mc/snapshot/unitTest/PageStore_unit.cpp
src/mc/snapshot/unitTest/mc_snapshot_unit.cpp

Simple merge
index 0000000,2c5e870..6a33e9e
mode 000000,100644..100644
--- /dev/null
@@@ -1,0 -1,135 +1,134 @@@
 -/* Copyright (c) 2015-2018. The SimGrid Team.
 - * All rights reserved.                                                     */
++/* Copyright (c) 2015-2018. The SimGrid Team. All rights reserved.          */
+ /* This program is free software; you can redistribute it and/or modify it
+  * under the terms of the license (GNU LGPL) which comes with this package. */
+ #define BOOST_TEST_MODULE PAGESTORE
+ #define BOOST_TEST_DYN_LINK
+ #include <boost/test/unit_test.hpp>
+ #include <iostream>
+ #include <cstring>
+ #include <cstdint>
+ #include <unistd.h>
+ #include <sys/mman.h>
+ #include <memory>
 -#include "src/mc/PageStore.hpp"
++#include "src/mc/sosp/PageStore.hpp"
+ using simgrid::mc::PageStore;
+ /***********************************/
+ // a class to hold the variable used in the test cases
+ class BOOST_tests {
+   public:
+     static std::size_t pagesize;
+     static std::unique_ptr<PageStore> store;
+     static void* data;
+     static size_t pageno1, pageno2, pageno3, pageno4;
+     static int value;
+   public: // member functions used by the test suite(s)
+     static void Init();
+     static void store_page_once();
+     static void store_same_page();
+     static void store_new_page();
+     static void unref_pages();
+     static void reallocate_page();
+     static void new_content(void* data, std::size_t size);
+     static void* getpage();
+ };
+ // static member datat initialization
+ std::size_t BOOST_tests::pagesize = 0;
+ std::unique_ptr<PageStore> BOOST_tests::store = nullptr;
+ void* BOOST_tests::data = nullptr;
+ size_t BOOST_tests::pageno1 = 0;
+ size_t BOOST_tests::pageno2 = 0;
+ size_t BOOST_tests::pageno3 = 0;
+ size_t BOOST_tests::pageno4 = 0;
+ int BOOST_tests::value = 0;
+ void BOOST_tests::Init() {
+   pagesize = (size_t) getpagesize();
+   store = std::unique_ptr<PageStore>(new simgrid::mc::PageStore(500));
+   data = getpage();
+   BOOST_CHECK_MESSAGE(store->size()==0, "Bad size");
+ }
+ void BOOST_tests::store_page_once() {
+   new_content(data, pagesize);
+   pageno1 = store->store_page(data);
+   BOOST_CHECK_MESSAGE(store->get_ref(pageno1)==1, "Bad refcount");
+   const void* copy = store->get_page(pageno1);
+   BOOST_CHECK_MESSAGE(::memcmp(data, copy, pagesize)==0, "Page data should be the same");
+   BOOST_CHECK_MESSAGE(store->size()==1, "Bad size");
+ }
+ void BOOST_tests::store_same_page() {
+   pageno2 = store->store_page(data);
+   BOOST_CHECK_MESSAGE(pageno1==pageno2, "Page should be the same");
+   BOOST_CHECK_MESSAGE(store->get_ref(pageno1)==2, "Bad refcount");
+   BOOST_CHECK_MESSAGE(store->size()==1, "Bad size");
+ }
+ void BOOST_tests::store_new_page() {
+   new_content(data, pagesize);
+   pageno3 = store->store_page(data);
+   BOOST_CHECK_MESSAGE(pageno1 != pageno3, "New page should be different");
+   BOOST_CHECK_MESSAGE(store->size()==2, "Bad size");
+ }
+ void BOOST_tests::unref_pages() {
+   store->unref_page(pageno1);
+   BOOST_CHECK_MESSAGE(store->get_ref(pageno1)==1, "Bad refcount");
+   BOOST_CHECK_MESSAGE(store->size()==2, "Bad size");
+   store->unref_page(pageno2);
+   BOOST_CHECK_MESSAGE(store->size()==1, "Bad size");
+ }
+ void BOOST_tests::reallocate_page() {
+   new_content(data, pagesize);
+   pageno4 = store->store_page(data);
+   BOOST_CHECK_MESSAGE(pageno1 == pageno4, "Page was not reused");
+   BOOST_CHECK_MESSAGE(store->get_ref(pageno4)==1, "Bad refcount");
+   BOOST_CHECK_MESSAGE(store->size()==2, "Bad size");
+ }
+ void BOOST_tests::new_content(void* data, std::size_t size) {
+   ::memset(data, ++value, size);
+ }
+ void* BOOST_tests::getpage() {
+   return mmap(nullptr, getpagesize(), PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0);
+ }
+ namespace utf = boost::unit_test; // for test case dependence
+ BOOST_AUTO_TEST_SUITE(PAGESTORE)
+ BOOST_AUTO_TEST_CASE(Init) {
+   BOOST_tests::Init();
+ }
+ BOOST_AUTO_TEST_CASE(store_page_once, * utf::depends_on("PAGESTORE/Init")) {
+   BOOST_tests::store_page_once();
+ }
+ BOOST_AUTO_TEST_CASE(store_same_page, * utf::depends_on("PAGESTORE/store_page_once")) {
+   BOOST_tests::store_same_page();
+ }
+ BOOST_AUTO_TEST_CASE(store_new_page, * utf::depends_on("PAGESTORE/store_same_page")) {
+   BOOST_tests::store_new_page();
+ }
+ BOOST_AUTO_TEST_CASE(unref_pages, * utf::depends_on("PAGESTORE/store_new_page")) {
+   BOOST_tests::unref_pages();
+ }
+ BOOST_AUTO_TEST_CASE(reallocate_page, * utf::depends_on("PAGESTORE/unref_pages")) {
+   BOOST_tests::reallocate_page();
+ }
+ BOOST_AUTO_TEST_SUITE_END()
index 0000000,edb4cd3..ef2d0da
mode 000000,100644..100644
--- /dev/null
@@@ -1,0 -1,239 +1,239 @@@
 -#include "src/mc/mc_snapshot.hpp"
+ /* Copyright (c) 2014-2018. The SimGrid Team. All rights reserved.          */
+ /* This program is free software; you can redistribute it and/or modify it
+  * under the terms of the license (GNU LGPL) which comes with this package. */
+ #define BOOST_TEST_MODULE snapshots
+ #define BOOST_TEST_DYN_LINK
+ #include <boost/test/unit_test.hpp>
+ #include <cstdlib>
+ #include <cstring>
+ #include <sys/mman.h>
+ #include "src/mc/mc_config.hpp"
+ #include "src/mc/mc_mmu.hpp"
+ #include "src/mc/mc_private.hpp"
++#include "src/mc/sosp/mc_snapshot.hpp"
+ /**************** Class BOOST_tests *************************/
+ using simgrid::mc::RegionSnapshot;
+ class BOOST_tests {
+   public:
+     static void init_memory(void* mem, size_t size);
+     static void Init(bool sparse_ckpt);
+     typedef struct {
+       size_t size;
+       void* src;
+       void* dstn;
+       RegionSnapshot region0;
+       RegionSnapshot region;
+     } prologue_return;
+     static prologue_return prologue(int n); // common to the below 5 fxs
+     static void read_whole_region();
+     static void read_region_parts();
+     static void compare_whole_region();
+     static void compare_region_parts();
+     static void read_pointer();
+     static void cleanup() {
+       delete mc_model_checker;
+       mc_model_checker = nullptr;
+     }
+   public:
+     static bool sparse_checkpoint;
+     static std::unique_ptr<simgrid::mc::RemoteClient> process;
+ };
+ // static member variables init.
+ bool BOOST_tests::sparse_checkpoint = 0;
+ std::unique_ptr<simgrid::mc::RemoteClient> BOOST_tests::process = nullptr;
+ void
+ BOOST_tests::init_memory(void* mem, size_t size) {
+   char* dest = (char*) mem;
+   for (size_t i = 0; i < size; ++i) {
+     dest[i] = rand() & 255;
+   }
+ }
+ void
+ BOOST_tests::Init(bool sparse_ckpt) {
+   _sg_mc_sparse_checkpoint = sparse_ckpt;
+   BOOST_CHECK_EQUAL(xbt_pagesize, getpagesize());
+   BOOST_CHECK_EQUAL(1 << xbt_pagebits, xbt_pagesize);
+   process = std::unique_ptr<simgrid::mc::RemoteClient>(new simgrid::mc::RemoteClient(getpid(), -1));
+   process->init();
+   mc_model_checker = new ::simgrid::mc::ModelChecker(std::move(process));
+ }
+ BOOST_tests::prologue_return BOOST_tests::prologue(int n) {
+   // Store region page(s):
+   size_t byte_size = n * xbt_pagesize;
+   void* source = mmap(nullptr, byte_size, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0);
+   BOOST_CHECK_MESSAGE(source!=MAP_FAILED, "Could not allocate source memory");
+   // Init memory and take snapshots:
+   init_memory(source, byte_size);
+   simgrid::mc::RegionSnapshot region0 = simgrid::mc::sparse_region(
+     simgrid::mc::RegionType::Unknown, source, source, byte_size);
+   for(int i=0; i<n; i+=2) {
+     init_memory((char*) source + i*xbt_pagesize, xbt_pagesize);
+   }
+   simgrid::mc::RegionSnapshot region = simgrid::mc::sparse_region(
+     simgrid::mc::RegionType::Unknown, source, source, byte_size);
+   void* destination = mmap(nullptr, byte_size, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0);
+   BOOST_CHECK_MESSAGE(source!=MAP_FAILED, "Could not allocate destination memory");
+   return {.size = byte_size, .src = source, .dstn = destination, 
+           .region0 = std::move(region0), .region = std::move(region)};
+ }
+ void
+ BOOST_tests::read_whole_region() {
+   for(int n=1; n!=256; ++n) {
+     prologue_return ret = prologue(n);
+     const void* read = MC_region_read(&(ret.region), ret.dstn, ret.src, ret.size);
+     BOOST_CHECK_MESSAGE(not memcmp(ret.src, read, ret.size), "Mismatch in MC_region_read()");
+     munmap(ret.dstn, ret.size);
+     munmap(ret.src, ret.size);
+   }
+ }
+ void
+ BOOST_tests::read_region_parts() {
+   for(int n=1; n!=256; ++n) {
+      prologue_return ret = prologue(n);
+      for(int j=0; j!=100; ++j) {
+        size_t offset = rand() % ret.size;
+        size_t size = rand() % (ret.size - offset);
+        const void* read = MC_region_read(&(ret.region), ret.dstn, (const char*) ret.src+offset, size);
+        BOOST_CHECK_MESSAGE(not memcmp((char*)ret.src + offset, read, size), "Mismatch in MC_region_read()");
+      }
+      munmap(ret.dstn, ret.size);
+      munmap(ret.src, ret.size);
+   }
+ }
+ void
+ BOOST_tests::compare_whole_region() {
+   for(int n=1; n!=256; ++n) {
+     prologue_return ret = prologue(n);
+     BOOST_CHECK_MESSAGE(MC_snapshot_region_memcmp(ret.src, &(ret.region0), ret.src, &(ret.region), ret.size),
+       "Unexpected match in MC_snapshot_region_memcmp() with previous snapshot");
+       
+     munmap(ret.dstn, ret.size);
+     munmap(ret.src, ret.size);
+   }
+ }
+ void
+ BOOST_tests::compare_region_parts() {
+    for(int n=1; n!=256; ++n) {
+      prologue_return ret = prologue(n);
+      // xbt_test_add("Compare parts of region data for %i page(s) with itself", n);
+      for(int j=0; j!=100; ++j) {
+        size_t offset = rand() % ret.size;
+        size_t size = rand() % (ret.size - offset);
+        BOOST_CHECK_MESSAGE(
+            not MC_snapshot_region_memcmp((char*)ret.src + offset, &(ret.region), (char*)ret.src + offset, &(ret.region), size),
+            "Mismatch in MC_snapshot_region_memcmp()");
+      }
+      munmap(ret.dstn, ret.size);
+      munmap(ret.src, ret.size);
+   }
+ }
+ void
+ BOOST_tests::read_pointer() {
+   prologue_return ret = prologue(1);
+   // xbt_test_add("Read pointer for %i page(s)", n);
+   memcpy(ret.src, &mc_model_checker, sizeof(void*));
+   simgrid::mc::RegionSnapshot region2 = simgrid::mc::sparse_region(
+     simgrid::mc::RegionType::Unknown, ret.src, ret.src, ret.size);
+   BOOST_CHECK_MESSAGE(MC_region_read_pointer(&region2, ret.src) == mc_model_checker,
+     "Mismtach in MC_region_read_pointer()");
+   munmap(ret.dstn, ret.size);
+   munmap(ret.src, ret.size);
+ }
+ /*************** End: class BOOST_tests *****************************/
+ namespace utf = boost::unit_test; // for test case dependence
+ BOOST_AUTO_TEST_SUITE(flat_snapshot)
+ BOOST_AUTO_TEST_CASE(Init) {
+   BOOST_tests::Init(0);
+ }
+ BOOST_AUTO_TEST_CASE(read_whole_region, * utf::depends_on("flat_snapshot/Init")) {
+   BOOST_tests::read_whole_region();
+ }
+ BOOST_AUTO_TEST_CASE(read_region_parts, * utf::depends_on("flat_snapshot/read_whole_region")) {
+   BOOST_tests::read_region_parts();
+ }
+ BOOST_AUTO_TEST_CASE(compare_whole_region, * utf::depends_on("flat_snapshot/read_region_parts")) {
+   BOOST_tests::compare_whole_region();
+ }
+ BOOST_AUTO_TEST_CASE(compare_region_parts, * utf::depends_on("flat_snapshot/compare_whole_region")) {
+   BOOST_tests::compare_region_parts();
+ }
+ BOOST_AUTO_TEST_CASE(read_pointer, * utf::depends_on("flat_snapshot/compare_region_parts")) {
+   BOOST_tests::read_pointer();
+ }
+ // not really a test, just for cleanup the resources
+ BOOST_AUTO_TEST_CASE(cleanup, * utf::depends_on("flat_snapshot/read_pointer")) {
+   BOOST_tests::cleanup();
+ }
+ BOOST_AUTO_TEST_SUITE_END()
+ BOOST_AUTO_TEST_SUITE(page_snapshots)
+ BOOST_AUTO_TEST_CASE(Init) {
+   BOOST_tests::Init(1);
+ }
+ BOOST_AUTO_TEST_CASE(read_whole_region, * utf::depends_on("page_snapshots/Init")) {
+   BOOST_tests::read_whole_region();
+ }
+ BOOST_AUTO_TEST_CASE(read_region_parts, * utf::depends_on("page_snapshots/read_whole_region")) {
+   BOOST_tests::read_region_parts();
+ }
+ BOOST_AUTO_TEST_CASE(compare_whole_region, * utf::depends_on("page_snapshots/read_region_parts")) {
+   BOOST_tests::compare_whole_region();
+ }
+ BOOST_AUTO_TEST_CASE(compare_region_parts, * utf::depends_on("page_snapshots/compare_whole_region")) {
+   BOOST_tests::compare_region_parts();
+ }
+ BOOST_AUTO_TEST_CASE(read_pointer, * utf::depends_on("page_snapshots/compare_region_parts")) {
+   BOOST_tests::read_pointer();
+ }
+ // not really a test, just for cleanup the resources
+ BOOST_AUTO_TEST_CASE(cleanup, * utf::depends_on("page_snapshots/read_pointer")) {
+   BOOST_tests::cleanup();
+ }
+ BOOST_AUTO_TEST_SUITE_END()