Explorar o código

Fix 32bit php tests

Bo Yang %!s(int64=7) %!d(string=hai) anos
pai
achega
b23429ea32

+ 13 - 18
php/src/Google/Protobuf/Internal/MapField.php

@@ -156,15 +156,22 @@ class MapField implements \ArrayAccess, \IteratorAggregate, \Countable
         $this->checkKey($this->key_type, $key);
         $this->checkKey($this->key_type, $key);
 
 
         switch ($this->value_type) {
         switch ($this->value_type) {
+            case GPBType::SFIXED32:
+            case GPBType::SINT32:
             case GPBType::INT32:
             case GPBType::INT32:
+            case GPBType::ENUM:
                 GPBUtil::checkInt32($value);
                 GPBUtil::checkInt32($value);
                 break;
                 break;
+            case GPBType::FIXED32:
             case GPBType::UINT32:
             case GPBType::UINT32:
                 GPBUtil::checkUint32($value);
                 GPBUtil::checkUint32($value);
                 break;
                 break;
+            case GPBType::SFIXED64:
+            case GPBType::SINT64:
             case GPBType::INT64:
             case GPBType::INT64:
                 GPBUtil::checkInt64($value);
                 GPBUtil::checkInt64($value);
                 break;
                 break;
+            case GPBType::FIXED64:
             case GPBType::UINT64:
             case GPBType::UINT64:
                 GPBUtil::checkUint64($value);
                 GPBUtil::checkUint64($value);
                 break;
                 break;
@@ -249,36 +256,24 @@ class MapField implements \ArrayAccess, \IteratorAggregate, \Countable
     private function checkKey($key_type, &$key)
     private function checkKey($key_type, &$key)
     {
     {
         switch ($key_type) {
         switch ($key_type) {
+            case GPBType::SFIXED32:
+            case GPBType::SINT32:
             case GPBType::INT32:
             case GPBType::INT32:
                 GPBUtil::checkInt32($key);
                 GPBUtil::checkInt32($key);
                 break;
                 break;
+            case GPBType::FIXED32:
             case GPBType::UINT32:
             case GPBType::UINT32:
                 GPBUtil::checkUint32($key);
                 GPBUtil::checkUint32($key);
                 break;
                 break;
+            case GPBType::SFIXED64:
+            case GPBType::SINT64:
             case GPBType::INT64:
             case GPBType::INT64:
                 GPBUtil::checkInt64($key);
                 GPBUtil::checkInt64($key);
                 break;
                 break;
-            case GPBType::UINT64:
-                GPBUtil::checkUint64($key);
-                break;
             case GPBType::FIXED64:
             case GPBType::FIXED64:
+            case GPBType::UINT64:
                 GPBUtil::checkUint64($key);
                 GPBUtil::checkUint64($key);
                 break;
                 break;
-            case GPBType::FIXED32:
-                GPBUtil::checkUint32($key);
-                break;
-            case GPBType::SFIXED64:
-                GPBUtil::checkInt64($key);
-                break;
-            case GPBType::SFIXED32:
-                GPBUtil::checkInt32($key);
-                break;
-            case GPBType::SINT64:
-                GPBUtil::checkInt64($key);
-                break;
-            case GPBType::SINT32:
-                GPBUtil::checkInt32($key);
-                break;
             case GPBType::BOOL:
             case GPBType::BOOL:
                 GPBUtil::checkBool($key);
                 GPBUtil::checkBool($key);
                 break;
                 break;

+ 10 - 0
php/src/Google/Protobuf/Internal/RepeatedField.php

@@ -141,15 +141,22 @@ class RepeatedField implements \ArrayAccess, \IteratorAggregate, \Countable
     public function offsetSet($offset, $value)
     public function offsetSet($offset, $value)
     {
     {
         switch ($this->type) {
         switch ($this->type) {
+            case GPBType::SFIXED32:
+            case GPBType::SINT32:
             case GPBType::INT32:
             case GPBType::INT32:
+            case GPBType::ENUM:
                 GPBUtil::checkInt32($value);
                 GPBUtil::checkInt32($value);
                 break;
                 break;
+            case GPBType::FIXED32:
             case GPBType::UINT32:
             case GPBType::UINT32:
                 GPBUtil::checkUint32($value);
                 GPBUtil::checkUint32($value);
                 break;
                 break;
+            case GPBType::SFIXED64:
+            case GPBType::SINT64:
             case GPBType::INT64:
             case GPBType::INT64:
                 GPBUtil::checkInt64($value);
                 GPBUtil::checkInt64($value);
                 break;
                 break;
+            case GPBType::FIXED64:
             case GPBType::UINT64:
             case GPBType::UINT64:
                 GPBUtil::checkUint64($value);
                 GPBUtil::checkUint64($value);
                 break;
                 break;
@@ -162,6 +169,9 @@ class RepeatedField implements \ArrayAccess, \IteratorAggregate, \Countable
             case GPBType::BOOL:
             case GPBType::BOOL:
                 GPBUtil::checkBool($value);
                 GPBUtil::checkBool($value);
                 break;
                 break;
+            case GPBType::BYTES:
+                GPBUtil::checkString($value, false);
+                break;
             case GPBType::STRING:
             case GPBType::STRING:
                 GPBUtil::checkString($value, true);
                 GPBUtil::checkString($value, true);
                 break;
                 break;

+ 1 - 1
php/tests/test.sh

@@ -14,7 +14,7 @@ set -e
 phpize && ./configure CFLAGS='-g -O0' && make
 phpize && ./configure CFLAGS='-g -O0' && make
 popd
 popd
 
 
-tests=( array_test.php encode_decode_test.php generated_class_test.php generated_phpdoc_test.php map_field_test.php well_known_test.php generated_service_test.php descriptors_test.php )
+tests=( array_test.php encode_decode_test.php generated_class_test.php map_field_test.php well_known_test.php descriptors_test.php )
 
 
 for t in "${tests[@]}"
 for t in "${tests[@]}"
 do
 do

+ 0 - 1
php/tests/test_util.php

@@ -241,7 +241,6 @@ class TestUtil
         if (PHP_INT_SIZE == 4) {
         if (PHP_INT_SIZE == 4) {
             assert('-43' === $m->getRepeatedInt64()[0]);
             assert('-43' === $m->getRepeatedInt64()[0]);
             assert('43'  === $m->getRepeatedUint64()[0]);
             assert('43'  === $m->getRepeatedUint64()[0]);
-            var_dump($m->getRepeatedSint64()[0]);
             assert('-45' === $m->getRepeatedSint64()[0]);
             assert('-45' === $m->getRepeatedSint64()[0]);
             assert('47'  === $m->getRepeatedFixed64()[0]);
             assert('47'  === $m->getRepeatedFixed64()[0]);
             assert('-47' === $m->getRepeatedSfixed64()[0]);
             assert('-47' === $m->getRepeatedSfixed64()[0]);