Jan Tattermusch
d1a3d277bc
Merge pull request #25190 from jtattermusch/bazel_wrapper_on_arm
...
make tools/bazel wrapper work on arm64
4 years ago
Eric Anderson
e833884c94
Merge pull request #25155 from ericgribkoff/java_v135_interop
...
Add Java v1.35.0 to interop matrix
4 years ago
Mark D. Roth
e86fd6b854
Remove BUILD file comment causing problems on import.
4 years ago
Vijay Pai
e9b17d6862
Merge pull request #25180 from grpc/vjpai-patch-2
...
Remove unused trace declaration
4 years ago
Mark D. Roth
42c26c5490
Merge pull request #25138 from markdroth/repo_mgr
...
Change repo manager to drfloob
4 years ago
Jan Tattermusch
ea9d4ff1c2
make tools/bazel wrapper work on arm64
4 years ago
Jan Tattermusch
1e31d6677c
Merge pull request #25183 from jtattermusch/upport_v1_35_x
...
Merge changes from v1.35.x branch into master
4 years ago
James Newton-King
f759267c56
Flag to build latest framework to ASP.NET Core interop tests
4 years ago
Jan Tattermusch
60a7ce664a
Merge remote-tracking branch 'upstream/v1.35.x' into HEAD
4 years ago
Jan Tattermusch
5a00d68e9a
Merge pull request #25131 from jtattermusch/protobuf_3_14_upgrade_for_1_35
...
Upgrade third_party/protobuf to v3.14.0 (for v1.35.x)
4 years ago
Yash Tibrewal
be34f56895
Merge pull request #25179 from yashykt/xdsend2endtestfix
...
Fix end2end test for ipv6 only platforms
4 years ago
Vijay Pai
8db8537975
Remove unused trace declaration
4 years ago
Richard Belleville
849c9b01bf
Make patch work for downstream dependencies
4 years ago
Richard Belleville
666e60315a
Add patch to protobuf
4 years ago
Jan Tattermusch
ded080e955
re-run tools/distrib/python/make_grpcio_tools.py
4 years ago
Jan Tattermusch
8d8dda40ae
include a bugfix in third_party/protobuf
4 years ago
Sergii Tkachenko
a7a39717a1
Merge pull request #25173 from hs0210/work
...
Fix typo
4 years ago
Yash Tibrewal
60891587bb
Fix end2end test for ipv6 only platforms
4 years ago
Esun Kim
ea22dd6f1b
Merge pull request #24953 from veblush/upb-descriptor
...
Clean up descriptor.upbdefs dependency of BUILD
4 years ago
Donna Dionne
83d6d96c86
Add Missing test case: present match
...
Interop reported an error for a present match and it is discovered this
case is missing from unit test. We have test for present (false) and we
have special case test but we don't have the normal present (true) test.
We also had a bug in a our code:
if (!value.has_value()) {
if (header_matcher.type ==
XdsApi::Route::Matchers::HeaderMatcher::HeaderMatcherType::PRESENT) {
return !header_matcher.present_match;
} else {
// For all other header matcher types, we need the header value to
// exist to consider matches.
return false;
}
}
switch (header_matcher.type) {
case XdsApi::Route::Matchers::HeaderMatcher::HeaderMatcherType::EXACT:
return value.value() == header_matcher.string_matcher;
case XdsApi::Route::Matchers::HeaderMatcher::HeaderMatcherType::REGEX:
return RE2::FullMatch(value.value().data(), *header_matcher.regex_match);
case XdsApi::Route::Matchers::HeaderMatcher::HeaderMatcherType::RANGE:
int64_t int_value;
if (!absl::SimpleAtoi(value.value(), &int_value)) {
return false;
}
return int_value >= header_matcher.range_start &&
int_value < header_matcher.range_end;
case XdsApi::Route::Matchers::HeaderMatcher::HeaderMatcherType::PREFIX:
return absl::StartsWith(value.value(), header_matcher.string_matcher);
case XdsApi::Route::Matchers::HeaderMatcher::HeaderMatcherType::SUFFIX:
return absl::EndsWith(value.value(), header_matcher.string_matcher);
default:
return false;
}
Note if header has value, we will go into the swtich but there is no case
XdsApi::Route::Matchers::HeaderMatcher::HeaderMatcherType::PRESENT,
which means we would have gone into default and decleared not a match.
The same day this bug was discovered by interop test, https://github.com/grpc/grpc/pull/25122
was submitted and the refactoring fixed the bug.
Nevertheless, I added the test case for the future.
4 years ago
donnadionne
d17ef6be04
Merge pull request #25139 from donnadionne/switch_bug
...
Fixing TryNextPrioirtyLocked to ensure we properly try higher priorities when lower ones fail
4 years ago
Ashitha Santhosh
05406e208b
Merge pull request #25122 from ashithasantosh/matchers
...
Refactor [String/Header/Path]Matcher in xds_api.
4 years ago
Sergii Tkachenko
24aafd16bb
Merge pull request #25107 from dapengzhang0/run-xds-v3-report
...
Change run_xds_tests.py default bootstrap to support v3
4 years ago
Doug Fawley
9a6d1b520f
Merge pull request #25164 from dfawley/go_release
...
Add v1.35.0 release of grpc-go to interop matrix
4 years ago
Ashitha Santhosh
4ca878799b
Refactor [String/Header/Path]matchers in xds_api.
4 years ago
Richard Belleville
273ed1fea0
Make patch work for downstream dependencies
4 years ago
Richard Belleville
4a300de663
Merge pull request #25152 from gnossen/backport_25142
...
[Backport] Python Circuit Breaking Interop Test Client Additions
4 years ago
Menghan Li
4860738db7
Merge pull request #25170 from menghanl/path_matching_regex
...
xds testing: add regex path matching test
4 years ago
Menghan Li
1dc357a2b1
Merge pull request #25141 from menghanl/lrs_failover_test
4 years ago
Penn (Dapeng) Zhang
5fe5a29965
fix sanity check again
4 years ago
Yash Tibrewal
2c3fbc91a7
Merge pull request #25008 from yashykt/xds_server_cont
...
xDS Server Config Fetcher
4 years ago
Penn (Dapeng) Zhang
b4a98b0a67
fix sanity check
4 years ago
Jan Tattermusch
4033defea9
Merge pull request #25163 from jtattermusch/remove_rules_python_duplicate
...
grpc_python_deps.bzl: remove duplicate rules_python entry
4 years ago
Jan Tattermusch
d446ec036f
Merge pull request #24861 from dapeng-mi/master
...
Bug fix: decode bytes object to string for subprocess.check_output ou…
4 years ago
Menghan Li
898671eb4e
xds testing: add regex path matching test
4 years ago
Hu Shuai
6c6926954d
Fix typo
...
Signed-off-by: Hu Shuai <hus.fnst@cn.fujitsu.com>
4 years ago
Penn (Dapeng) Zhang
d8e77ce36b
revert _v3 suffix to log dir
4 years ago
Richard Belleville
728f2a2f2a
Update to server-3
4 years ago
Penn (Dapeng) Zhang
33640690c2
add TOOD to remove default value
4 years ago
Penn (Dapeng) Zhang
22444604a4
revert grpc_xds_bazel_test_in_docker.sh
4 years ago
Donna Dionne
4715bbc220
Fixing TryNextPrioirtyLocked to ensure we properly try higher priorities when lower ones fail
4 years ago
Richard Belleville
99d20dfab3
Add patch to protobuf
4 years ago
Yash Tibrewal
ac4f4de196
xDS server config fetcher
4 years ago
Richard Belleville
0539a63274
Merge pull request #25166 from gnossen/python_cb_interop_image
...
Update Server Image for Python xDS Interop Tests
4 years ago
Menghan Li
6851eeefaa
xds testing: add failover test based on load
4 years ago
Adam J Heller
03bcab4edf
Merge pull request #25150 from drfloob/iomgr-posix-header-cleanup
...
Remove unused header iomgr_posix.h
4 years ago
Menghan Li
eb0b206732
Merge pull request #25151 from menghanl/matching_test_fail
...
xds testing: make header matching and path matching fail properly
4 years ago
AJ Heller
33cba7ea39
Remove unused header iomgr_posix.h
...
This header file only served to include iomgr_internal.h, which most
depedent code already includes.
4 years ago
Richard Belleville
278b0a8af4
Update to server-3
4 years ago
Mark D. Roth
652d10cd1d
Merge pull request #25147 from markdroth/xds_bootstrap_fallback
...
Add internal API for setting fallback xDS bootstrap contents.
4 years ago