From 30311dfa71c3bb31e0d01dd3b5678336a1c8e45a Mon Sep 17 00:00:00 2001 From: Kentaro Ohkouchi Date: Fri, 15 Sep 2023 00:24:24 +0900 Subject: [PATCH] Fix mysql --- .../class/util/SC_Utils/SC_Utils_sfGetAddressTest.php | 10 ++++++++-- .../SC_Utils/SC_Utils_sfGetProductClassIdTest.php | 11 +++++------ 2 files changed, 13 insertions(+), 8 deletions(-) diff --git a/tests/class/util/SC_Utils/SC_Utils_sfGetAddressTest.php b/tests/class/util/SC_Utils/SC_Utils_sfGetAddressTest.php index 9b0cfc1b64..6b6fb5d4bd 100644 --- a/tests/class/util/SC_Utils/SC_Utils_sfGetAddressTest.php +++ b/tests/class/util/SC_Utils/SC_Utils_sfGetAddressTest.php @@ -65,6 +65,7 @@ public function test_住所が一件だけヒットする場合_住所データ ) ); $this->actual = SC_Utils::sfGetAddress('0600041'); + var_dump($this->objQuery->select('*', 'mtb_zip', 'zipcode = ?', array('0600041'))); $this->verify('郵便番号検索結果'); } @@ -187,8 +188,13 @@ protected function setUpAddress() $this->objQuery->delete('mtb_zip'); foreach ($address as $item) { - $this->objQuery->insert('mtb_zip', $item); + var_dump($item); + $r = $this->objQuery->insert('mtb_zip', $item); + if (PEAR::isError($r)) { + var_dump($r->getMessage()); + } } + + var_dump($this->objQuery->select('*', 'mtb_zip')); } } - diff --git a/tests/class/util/SC_Utils/SC_Utils_sfGetProductClassIdTest.php b/tests/class/util/SC_Utils/SC_Utils_sfGetProductClassIdTest.php index bc7224c0e6..a545e48b2c 100644 --- a/tests/class/util/SC_Utils/SC_Utils_sfGetProductClassIdTest.php +++ b/tests/class/util/SC_Utils/SC_Utils_sfGetProductClassIdTest.php @@ -49,7 +49,7 @@ protected function tearDown() ///////////////////////////////////////// public function testSfGetProductClassId_存在する製品IDのみを指定した場合_カテゴリ0の対応する製品クラスが取得できる() { - + $this->expected = '2001'; $this->actual = SC_Utils::sfGetProductClassId('2001'); @@ -58,7 +58,7 @@ public function testSfGetProductClassId_存在する製品IDのみを指定し public function testSfGetProductClassId_存在する製品IDのみを指定してカテゴリ0の製品クラスが存在しなければ_nullが返る() { - + $this->expected = null; $this->actual = SC_Utils::sfGetProductClassId('1001'); @@ -67,7 +67,7 @@ public function testSfGetProductClassId_存在する製品IDのみを指定し public function testSfGetProductClassId_存在する製品IDとカテゴリIDを指定した場合_対応する製品クラスが取得できる() { - + $this->expected = '1002'; $this->actual = SC_Utils::sfGetProductClassId('1001', '2'); @@ -76,7 +76,7 @@ public function testSfGetProductClassId_存在する製品IDとカテゴリIDを public function testSfGetProductClassId_存在する製品IDと存在しないカテゴリIDを指定した場合_nullが返る() { - + $this->expected = null; $this->actual = SC_Utils::sfGetProductClassId('1001', '999'); @@ -126,8 +126,7 @@ protected function setUpProductsClass() $this->objQuery->delete('dtb_products_class'); foreach ($products_class as $item) { - $this->objQuery->insert('dtb_products_class', $item); + $this->objQuery->insert('dtb_products_class', $item); } } } -