Remove some ObjC tests already run by objc_bazel_tests from run_tests.py (#29678)
* stop running objc plugin tests with run_tests.py * stop running bazel examples as part of run_tests.py * stop running UnitTests and MacTests as part part of run_tests.pyreviewable/pr29621/r13^2
parent
8b1cef6e19
commit
4976933e6b
4 changed files with 0 additions and 242 deletions
@ -1,35 +0,0 @@ |
||||
#!/bin/bash |
||||
# Copyright 2019 gRPC authors. |
||||
# |
||||
# Licensed under the Apache License, Version 2.0 (the "License"); |
||||
# you may not use this file except in compliance with the License. |
||||
# You may obtain a copy of the License at |
||||
# |
||||
# http://www.apache.org/licenses/LICENSE-2.0 |
||||
# |
||||
# Unless required by applicable law or agreed to in writing, software |
||||
# distributed under the License is distributed on an "AS IS" BASIS, |
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
# See the License for the specific language governing permissions and |
||||
# limitations under the License. |
||||
|
||||
# Don't run this script standalone. Instead, run from the repository root: |
||||
# ./tools/run_tests/run_tests.py -l objc |
||||
|
||||
set -ev |
||||
|
||||
# Params: |
||||
# EXAMPLE_PATH - directory of the example |
||||
# SCHEME - scheme of the example, used by xcodebuild |
||||
|
||||
# CocoaPods requires the terminal to be using UTF-8 encoding. |
||||
export LANG=en_US.UTF-8 |
||||
|
||||
cd `dirname $0`/../../.. |
||||
|
||||
cd $EXAMPLE_PATH/.. |
||||
|
||||
if [ "$SCHEME" == "watchOS-sample-WatchKit-App" ]; then |
||||
SCHEME="watchOS-sample watchOS-sample-watchApp" |
||||
fi |
||||
../../../tools/bazel build $SCHEME |
@ -1,82 +0,0 @@ |
||||
#!/bin/bash |
||||
# Copyright 2015 gRPC authors. |
||||
# |
||||
# Licensed under the Apache License, Version 2.0 (the "License"); |
||||
# you may not use this file except in compliance with the License. |
||||
# You may obtain a copy of the License at |
||||
# |
||||
# http://www.apache.org/licenses/LICENSE-2.0 |
||||
# |
||||
# Unless required by applicable law or agreed to in writing, software |
||||
# distributed under the License is distributed on an "AS IS" BASIS, |
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
# See the License for the specific language governing permissions and |
||||
# limitations under the License. |
||||
|
||||
# Don't run this script standalone. Instead, run from the repository root: |
||||
# ./tools/run_tests/run_tests.py -l objc |
||||
|
||||
set -ev |
||||
|
||||
cd $(dirname $0) |
||||
|
||||
# Run the tests server. |
||||
|
||||
ROOT_DIR=../../.. |
||||
BAZEL=$ROOT_DIR/tools/bazel |
||||
PROTOC=$ROOT_DIR/bazel-bin/external/com_google_protobuf/protoc |
||||
PLUGIN=$ROOT_DIR/bazel-bin/src/compiler/grpc_objective_c_plugin |
||||
RUNTIME_IMPORT_PREFIX=prefix/dir/ |
||||
|
||||
[ -f $PROTOC ] && [ -f $PLUGIN ] || { |
||||
BAZEL build @com_google_protobuf//:protoc //src/compiler:grpc_objective_c_plugin |
||||
} |
||||
|
||||
rm -rf RemoteTestClient/*pb* |
||||
|
||||
$PROTOC \ |
||||
--plugin=protoc-gen-grpc=$PLUGIN \ |
||||
--objc_out=RemoteTestClient \ |
||||
--grpc_out=grpc_local_import_prefix=$RUNTIME_IMPORT_PREFIX,runtime_import_prefix=$RUNTIME_IMPORT_PREFIX:RemoteTestClient \ |
||||
-I $ROOT_DIR \ |
||||
-I ../../../third_party/protobuf/src \ |
||||
$ROOT_DIR/src/objective-c/examples/RemoteTestClient/*.proto |
||||
|
||||
# Verify the "runtime_import_prefix" option |
||||
# Verify the output proto filename |
||||
[ -e ./RemoteTestClient/src/objective-c/examples/RemoteTestClient/Test.pbrpc.m ] || { |
||||
echo >&2 "protoc outputs wrong filename." |
||||
exit 1 |
||||
} |
||||
|
||||
# Verify paths of protobuf WKTs in generated code contain runtime import prefix. |
||||
[ "`cat RemoteTestClient/src/objective-c/examples/RemoteTestClient/Test.pbrpc.m | |
||||
egrep '#import "'"${RUNTIME_IMPORT_PREFIX}"'GPBEmpty\.pbobjc\.h'`" ] || { |
||||
echo >&2 "protoc generated import with wrong filename." |
||||
exit 1 |
||||
} |
||||
|
||||
# Verify paths of non WKTs protos in generated code don't contain runtime import prefix. |
||||
[ "`cat RemoteTestClient/src/objective-c/examples/RemoteTestClient/Test.pbrpc.m | |
||||
egrep '.*\Messages.pbobjc.h"$' | |
||||
egrep '#import "'"${RUNTIME_IMPORT_PREFIX}"`" ] && { |
||||
echo >&2 "protoc generated import with wrong filename." |
||||
exit 1 |
||||
} |
||||
|
||||
# Verify the "grpc_local_import_directory" option |
||||
# Verify system files are imported in a "local" way in header files. |
||||
[ "`cat RemoteTestClient/src/objective-c/examples/RemoteTestClient/Test.pbrpc.h | |
||||
egrep '#import "'"${RUNTIME_IMPORT_PREFIX}"'/ProtoRPC/.*\.h'`"] || { |
||||
echo >&2 "grpc system files should be imported with full paths." |
||||
} |
||||
|
||||
# Verify system files are imported in a "local" way in source files. |
||||
[ "`cat RemoteTestClient/src/objective-c/examples/RemoteTestClient/Test.pbrpc.m | |
||||
egrep '#import "'"${RUNTIME_IMPORT_PREFIX}"'/ProtoRPC/.*\.h'`"] || { |
||||
echo >&2 "grpc system files should be imported with full paths." |
||||
} |
||||
|
||||
# Run one extra command to clear $? before exiting the script to prevent |
||||
# failing even when tests pass. |
||||
echo "Plugin option tests passed." |
@ -1,69 +0,0 @@ |
||||
#!/bin/bash |
||||
# Copyright 2015 gRPC authors. |
||||
# |
||||
# Licensed under the Apache License, Version 2.0 (the "License"); |
||||
# you may not use this file except in compliance with the License. |
||||
# You may obtain a copy of the License at |
||||
# |
||||
# http://www.apache.org/licenses/LICENSE-2.0 |
||||
# |
||||
# Unless required by applicable law or agreed to in writing, software |
||||
# distributed under the License is distributed on an "AS IS" BASIS, |
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
# See the License for the specific language governing permissions and |
||||
# limitations under the License. |
||||
|
||||
# Don't run this script standalone. Instead, run from the repository root: |
||||
# ./tools/run_tests/run_tests.py -l objc |
||||
|
||||
set -ev |
||||
|
||||
cd $(dirname $0) |
||||
|
||||
# Run the tests server. |
||||
|
||||
ROOT_DIR=../../.. |
||||
BAZEL=$ROOT_DIR/tools/bazel |
||||
PROTOC=$ROOT_DIR/bazel-bin/external/com_google_protobuf/protoc |
||||
PLUGIN=$ROOT_DIR/bazel-bin/src/compiler/grpc_objective_c_plugin |
||||
|
||||
[ -f $PROTOC ] && [ -f $PLUGIN ] || { |
||||
BAZEL build @com_google_protobuf//:protoc //src/compiler:grpc_objective_c_plugin |
||||
} |
||||
|
||||
rm -rf PluginTest/*pb* |
||||
|
||||
$PROTOC \ |
||||
--plugin=protoc-gen-grpc=$PLUGIN \ |
||||
--objc_out=PluginTest \ |
||||
--grpc_out=PluginTest \ |
||||
-I PluginTest \ |
||||
-I ../../../third_party/protobuf/src \ |
||||
PluginTest/*.proto |
||||
|
||||
# Verify the output proto filename |
||||
[ -e ./PluginTest/TestDashFilename.pbrpc.h ] || { |
||||
echo >&2 "protoc outputs wrong filename." |
||||
exit 1 |
||||
} |
||||
|
||||
# TODO(jtattermusch): rewrite the tests to make them more readable. |
||||
# Also, the way they are written, they need one extra command to run in order to |
||||
# clear $? after they run (see end of this script) |
||||
# Verify names of the imported protos in generated code don't contain dashes. |
||||
[ "`cat PluginTest/TestDashFilename.pbrpc.h | |
||||
egrep '#import ".*\.pb(objc|rpc)\.h"$' | |
||||
egrep '-'`" ] && { |
||||
echo >&2 "protoc generated import with wrong filename." |
||||
exit 1 |
||||
} |
||||
[ "`cat PluginTest/TestDashFilename.pbrpc.m | |
||||
egrep '#import ".*\.pb(objc|rpc)\.h"$' | |
||||
egrep '-'`" ] && { |
||||
echo >&2 "protoc generated import with wrong filename." |
||||
exit 1 |
||||
} |
||||
|
||||
# Run one extra command to clear $? before exiting the script to prevent |
||||
# failing even when tests pass. |
||||
echo "Plugin tests passed." |
Loading…
Reference in new issue