test_power_profile.cc
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:6k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /*
  2.  * Copyright (c) 2007 Regents of the SIGNET lab, University of Padova.
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that the following conditions
  7.  * are met:
  8.  * 1. Redistributions of source code must retain the above copyright
  9.  *    notice, this list of conditions and the following disclaimer.
  10.  * 2. Redistributions in binary form must reproduce the above copyright
  11.  *    notice, this list of conditions and the following disclaimer in the
  12.  *    documentation and/or other materials provided with the distribution.
  13.  * 3. Neither the name of the University of Padova (SIGNET lab) nor the 
  14.  *    names of its contributors may be used to endorse or promote products 
  15.  *    derived from this software without specific prior written permission.
  16.  *
  17.  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
  18.  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 
  19.  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 
  20.  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR 
  21.  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 
  22.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 
  23.  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; 
  24.  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
  25.  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 
  26.  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 
  27.  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  28.  */
  29. #include<stdio.h>
  30. #include <unistd.h>
  31. #include <tcl.h>
  32. #include <otcl.h>
  33. #include <tclcl.h>
  34. #include"power_profile.h"
  35.  
  36. #define NUMELS 50
  37. #define RUNS 20 
  38. // Use these value to check for memory bugs
  39. //#define NUMELS 50000
  40. //#define RUNS 10000
  41.  
  42. int single_test(PowerProfile* pp, double time_offset, int is_first_run)
  43. {
  44.   int d;
  45.   int exitval = 0;
  46.   static double accpower = 0.0;
  47.   double tmppower;
  48.   /* Testing if accumulated power is correct even when not recording */ 
  49.   for (d=-NUMELS;d<0;d++)
  50.     {
  51.       struct PowerElement el;
  52.       el.time = 2*d + time_offset;
  53.       el.power = 1;
  54.       accpower += el.power;
  55.       pp->addElement(el);
  56.     } 
  57.   if ((pp->getNumElements() != 1) && is_first_run)
  58.     {
  59.       exitval = 1;
  60.       printf("getNumElements() should return 1 instead of %d "
  61.      "if nothing has been recordedn", pp->getNumElements());
  62.     }
  63.   pp->startNewRecording();
  64.   for (d=0;d<NUMELS/2;d++)
  65.     {
  66.       struct PowerElement el;
  67.       el.time = 2*d + time_offset;
  68.       el.power = 1;
  69.       pp->addElement(el);
  70.     } 
  71.   for (d;d<NUMELS;d++)
  72.     {
  73.       struct PowerElement el;
  74.       el.time =  2*d + time_offset;
  75.       el.power = -1;
  76.       pp->addElement(el);
  77.     } 
  78.   pp->stopRecording();
  79.   /* Checking if recorded values are correct */
  80.   if (pp->getNumElements() != NUMELS+1)
  81.     {
  82.       exitval = 1;
  83.       printf("getNumElements() returned %d instead of %dn", pp->getNumElements(), NUMELS+1);
  84.     }
  85.   tmppower = pp->getElement(0).power ;
  86.   if (tmppower != accpower)
  87.     {
  88.       exitval = 1;
  89.       printf("Accumulated power not correct at the beginning of the recording!n"
  90.      "Reported: %2.10f t  Expected: %2.10fn",
  91.      tmppower, accpower);
  92.     }
  93.   for (d=1;d<(NUMELS/2)+1;d++)
  94.     {
  95.       PowerElement el;
  96.       double etime;
  97.       el = pp->getElement(d);
  98.       etime = 2*d;
  99.       if (el.time != etime)
  100. {
  101.   printf("Wrong time for entry %d! t reported time: %f t expected time: %fn",d,el.time,etime);
  102.   exitval = 1;
  103. }
  104.       accpower += 1;
  105.       if (el.power != accpower)
  106. {
  107.   printf("Wrong power for entry %d! t reported power: %f t expected power: %fn",d,el.power,accpower);
  108.   exitval = 1;
  109. }
  110.     } 
  111.   for (d;d<=NUMELS;d++)
  112.     {
  113.       PowerElement el;
  114.       double etime;
  115.       el = pp->getElement(d);
  116.       etime = 2*d;
  117.       if (el.time != etime)
  118. {
  119.   printf("Wrong time for entry %d! t reported time: %f t expected time: %fn",d,el.time,etime);
  120.   exitval = 1;
  121. }
  122.       accpower -= 1;
  123.       if (el.power != accpower)
  124. {
  125.   printf("Wrong power for entry %d! t reported power: %f t expected power: %fn",d,el.power,accpower);
  126.   exitval = 1;
  127. }
  128.     } 
  129.   /* Now testing data retrieval in reverse order */
  130.   for (d=NUMELS; d>=(NUMELS/2)+1; d--)
  131.     {
  132.       PowerElement el;
  133.       double etime;
  134.       el = pp->getElement(d);
  135.       etime = 2*d;
  136.       if (el.time != etime)
  137. {
  138.   printf("Wrong time for entry %d! t reported time: %f t expected time: %fn",d,el.time,etime);
  139.   exitval = 1;
  140. }
  141.       if (el.power != accpower)
  142. {
  143.   printf("Wrong power for entry %d! t reported power: %f t expected power: %fn",d,el.power,accpower);
  144.   exitval = 1;
  145. }
  146.       accpower += 1;
  147.     } 
  148.   for (d; d>0; d--)
  149.     {
  150.       PowerElement el;
  151.       double etime;
  152.       el = pp->getElement(d);
  153.       etime = 2*d;
  154.       if (el.time != etime)
  155. {
  156.   printf("Wrong time for entry %d! t reported time: %f t expected time: %fn",d,el.time,etime);
  157.   exitval = 1;
  158. }
  159.       if (el.power != accpower)
  160. {
  161.   printf("Wrong power for entry %d! t reported power: %f t expected power: %fn",d,el.power,accpower);
  162.   exitval = 1;
  163. }
  164.       accpower -= 1;
  165.     } 
  166.   //  if (!exitval) printf(".");
  167.   /* Setting accumulated tx power for next test iteration */
  168.   accpower =  pp->getElement(NUMELS).power;
  169.   return exitval;
  170. }
  171. int main(int argc, char **argv)
  172. {
  173.   int i;
  174.   double offset;
  175.   PowerProfile* pp = new PowerProfile;
  176.   for(i=0; i<RUNS; i++)
  177.     {
  178.       offset = 4*NUMELS*i + 7*NUMELS;
  179.       if (single_test(pp, offset, i==0) != 0)
  180. {
  181.   printf("Test failed at iteration %dn",i+1);
  182.   return 1;
  183. }
  184.     }
  185.   printf("Test succeeded!n");
  186.   return 0;
  187.   delete pp;
  188. }