This is an automated email from the ASF dual-hosted git repository.
jensg pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/thrift.git
from d0bd39ce7 THRIFT-5761 Lib/json tests fail
add 14fc2be20 [THRIFT-5757] Unit tests for php lib
add 3a6ee00d6 Update lib/php/test/Unit/Lib/StringFunc/MbStringTest.php
add d1a4fee5d Update lib/php/test/Unit/Lib/StringFunc/CoreTest.php
add da2ef3486 Update
lib/php/test/Unit/Lib/ClassLoader/ThriftClassLoaderTest.php
No new revisions were added by this update.
Summary of changes:
.github/workflows/build.yml | 10 +-
lib/php/lib/ClassLoader/ThriftClassLoader.php | 14 +-
lib/php/lib/Factory/TBinaryProtocolFactory.php | 16 ++
lib/php/lib/Factory/TCompactProtocolFactory.php | 10 +-
lib/php/lib/Factory/TJSONProtocolFactory.php | 10 +-
lib/php/lib/Factory/TProtocolFactory.php | 4 +-
lib/php/lib/Factory/TStringFuncFactory.php | 1 +
lib/php/lib/StringFunc/Core.php | 11 +
lib/php/lib/StringFunc/Mbstring.php | 11 +
lib/php/lib/StringFunc/TStringFunc.php | 12 ++
lib/php/test/Makefile.am | 10 +-
.../Unit/Lib/ClassLoader/Fixtures/A/TestClass.php} | 18 +-
.../Unit/Lib/ClassLoader/Fixtures/B/TestClass.php} | 18 +-
.../Unit/Lib/ClassLoader/Fixtures/C/TestClass.php} | 18 +-
.../Unit/Lib/ClassLoader/Fixtures/D/TestClass.php} | 18 +-
.../Unit/Lib/ClassLoader/Fixtures/E/TestClass.php} | 18 +-
.../Unit/Lib/ClassLoader/ThriftClassLoaderTest.php | 223 +++++++++++++++++++++
.../Lib/Factory/TBinaryProtocolFactoryTest.php | 81 ++++++++
.../Lib/Factory/TCompactProtocolFactoryTest.php} | 30 ++-
.../Lib/Factory/TFramedTransportFactoryTest.php | 56 ++++++
.../Unit/Lib/Factory/TJSONProtocolFactoryTest.php} | 42 ++--
.../Unit/Lib/Factory/TStringFuncFactoryTest.php | 74 +++++++
.../Unit/Lib/Factory/TTransportFactoryTest.php} | 25 ++-
lib/php/test/Unit/Lib/StringFunc/CoreTest.php | 215 ++++++++++++++++++++
lib/php/test/Unit/Lib/StringFunc/MbStringTest.php | 215 ++++++++++++++++++++
25 files changed, 1051 insertions(+), 109 deletions(-)
copy lib/php/{lib/Protocol/SimpleJSON/Context.php =>
test/Unit/Lib/ClassLoader/Fixtures/A/TestClass.php} (78%)
copy lib/php/{lib/Protocol/SimpleJSON/Context.php =>
test/Unit/Lib/ClassLoader/Fixtures/B/TestClass.php} (78%)
copy lib/php/{lib/Protocol/SimpleJSON/Context.php =>
test/Unit/Lib/ClassLoader/Fixtures/C/TestClass.php} (78%)
copy lib/php/{lib/Protocol/SimpleJSON/Context.php =>
test/Unit/Lib/ClassLoader/Fixtures/D/TestClass.php} (78%)
copy lib/php/{lib/Protocol/SimpleJSON/Context.php =>
test/Unit/Lib/ClassLoader/Fixtures/E/TestClass.php} (78%)
create mode 100644 lib/php/test/Unit/Lib/ClassLoader/ThriftClassLoaderTest.php
create mode 100644 lib/php/test/Unit/Lib/Factory/TBinaryProtocolFactoryTest.php
copy lib/php/{lib/Factory/TCompactProtocolFactory.php =>
test/Unit/Lib/Factory/TCompactProtocolFactoryTest.php} (55%)
create mode 100644
lib/php/test/Unit/Lib/Factory/TFramedTransportFactoryTest.php
copy lib/php/{lib/Protocol/JSON/ListContext.php =>
test/Unit/Lib/Factory/TJSONProtocolFactoryTest.php} (56%)
create mode 100644 lib/php/test/Unit/Lib/Factory/TStringFuncFactoryTest.php
copy lib/php/{lib/Factory/TProtocolFactory.php =>
test/Unit/Lib/Factory/TTransportFactoryTest.php} (64%)
create mode 100644 lib/php/test/Unit/Lib/StringFunc/CoreTest.php
create mode 100644 lib/php/test/Unit/Lib/StringFunc/MbStringTest.php