Пример #1
0
 public function test_delete()
 {
     $x = new Armor();
     $x->characterId = $this->id;
     $allArmor = array(array('armor_name' => "first armor, +" . __LINE__, 'ac_bonus' => __LINE__), array('armor_name' => "second armor, +" . __LINE__, 'ac_bonus' => __LINE__));
     $myIds = array();
     foreach ($allArmor as $data) {
         $data['character_id'] = $this->id;
         $thisId = $x->create($this->dbObj, $data);
         $this->assertTrue(is_numeric($thisId));
         $myIds[$thisId] = $data;
     }
     $numLeft = count($myIds);
     foreach ($myIds as $i => $insertData) {
         $x->id = $i;
         $testData = $x->load($this->dbObj);
         foreach ($insertData as $k => $v) {
             $this->assertEquals($v, $testData[$k]);
         }
     }
 }
 public function handle_delete($type, $recordId)
 {
     $retval = "Invalid section... type=(" . $type . "), recordId=(" . $recordId . ")";
     //		$log = new cs_webdblogger($this->dbObj, "Character");
     switch ($type) {
         case 'weapon':
         case Weapon::sheetIdPrefix:
             $x = new Weapon();
             $x->load($this->dbObj, $recordId);
             $retval = $x->delete($this->dbObj);
             break;
         case 'armor':
         case Armor::sheetIdPrefix:
             $x = new Armor();
             $x->load($this->dbObj, $recordId);
             $retval = $x->delete($this->dbObj);
             break;
         case 'skill':
         case Skill::sheetIdPrefix:
             $x = new Skill();
             $x->load($this->dbObj, $recordId);
             $retval = $x->delete($this->dbObj);
             break;
         case 'feat':
         case 'specialAbility':
         case SpecialAbility::sheetIdPrefix:
             $x = new SpecialAbility();
             $x->load($this->dbObj, $recordId);
             $retval = $x->delete($this->dbObj);
             break;
         case 'gear':
         case Gear::sheetIdPrefix:
             $x = new Gear();
             $x->load($this->dbObj, $recordId);
             $retval = $x->delete($this->dbObj);
             break;
     }
     //		$log->log_by_class("type=(". $type ."), recordId=(". $recordId ."), result::: ". $retval, "delete");
     return $retval;
 }
 public function test_get_total_weight()
 {
     $x = new CharacterSheet($this->dbObj, __METHOD__, 1);
     $this->assertTrue(is_numeric($x->characterId), ToolBox::debug_print($x));
     $this->assertEquals(0, $x->get_total_weight(false));
     $this->assertEquals($x->get_total_weight(true), $x->get_total_weight(false));
     //now create some gear.
     $manualWeight = 0;
     $itemList = array();
     $createThis = array(array('torches', 1, 10), array('lead nuggets', 10, 10), array('misc', 4, 200));
     $g = new Gear();
     $g->characterId = $x->characterId;
     foreach ($createThis as $data) {
         $manualWeight += round($data[1] * $data[2], 1);
         $xData = array('character_id' => $x->characterId, 'gear_name' => $data[0], 'weight' => $data[1], 'quantity' => $data[2]);
         $id = $g->create($this->dbObj, $xData);
         $itemList[$id] = $xData;
     }
     $this->assertEquals($manualWeight, Gear::calculate_list_weight($itemList));
     //now, at first, this should be 0 because we haven't re-loaded the sheet.
     $this->assertEquals(0, $x->get_total_weight(false));
     $this->assertEquals(0, $x->get_total_weight(true));
     $x->load();
     $this->assertEquals($manualWeight, $x->get_total_weight(false));
     $this->assertEquals($manualWeight, $x->get_total_weight(true));
     $withWeapons = $manualWeight;
     $w = new Weapon();
     $w->characterId = $x->characterId;
     $wpns = array('great_sword' => 5, 'long_sword' => 2, 'short_sword' => 1);
     foreach ($wpns as $name => $wgt) {
         $xData = array('character_id' => $x->characterId, 'weapon_name' => $name, 'weight' => $wgt);
         $id = $w->create($this->dbObj, $xData);
         $itemList[$id] = $xData;
         $withWeapons += $wgt;
     }
     $x->load();
     $this->assertNotEquals($manualWeight, $withWeapons);
     $this->assertTrue($withWeapons > $manualWeight);
     $this->assertEquals($manualWeight, $x->get_total_weight(false));
     $this->assertEquals($x->get_total_weight(), $x->get_total_weight(false));
     $this->assertEquals($withWeapons, $x->get_total_weight(true));
     $withArmor = $withWeapons;
     $a = new Armor();
     $rmr = array('big' => 10, 'small' => 1);
     foreach ($rmr as $name => $wgt) {
         $xData = array('character_id' => $x->characterId, 'armor_name' => $name, 'weight' => $wgt);
         $id = $a->create($this->dbObj, $xData);
         $itemList[$id] = $xData;
         $withArmor += $wgt;
     }
     $x->load();
     $this->assertNotEquals($manualWeight, $withArmor);
     $this->assertTrue($withArmor > $withWeapons);
     $this->assertEquals($manualWeight, $x->get_total_weight(false));
     $this->assertEquals($x->get_total_weight(), $x->get_total_weight(false));
     $this->assertEquals($withArmor, $x->get_total_weight(true));
 }