Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Android] Fix some System.Net tests #71385

Merged
Merged
Changes from 1 commit
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
45bedb1
Implement IncludeNetworkSecurityConfig
simonrozsival Jun 27, 2022
575bed7
Use IncludeNetworkSecurityConfig
simonrozsival Jun 27, 2022
5e6b3fa
Fix tests
simonrozsival Jun 28, 2022
93b5648
Merge branch 'main' of https://github.com/dotnet/runtime into fix-sys…
simonrozsival Jun 28, 2022
89296f6
Remove active issue attributes
simonrozsival Jun 28, 2022
f7ca23a
Rename certificate file
simonrozsival Jun 28, 2022
ff09605
Revert unnecessary changes
simonrozsival Jun 28, 2022
039d051
TMP: re-throw caught exception to reveal more information in logs
simonrozsival Jul 1, 2022
98db19b
Revert "TMP: re-throw caught exception to reveal more information in …
simonrozsival Jul 1, 2022
a1616c3
Merge branch 'main' of https://github.com/dotnet/runtime into fix-sys…
simonrozsival Jul 1, 2022
a4c25b4
TMP: add and update res folders until they are merged into runtime-as…
simonrozsival Jul 4, 2022
4acb16b
Fix System.Net.Requests tests
simonrozsival Jul 4, 2022
3dad204
Re-enable System.Net.Http functional tests
simonrozsival Jul 4, 2022
b1806a1
Try fixing failing test
simonrozsival Jul 7, 2022
a440d13
Merge branch 'main' of https://github.com/dotnet/runtime into fix-sys…
simonrozsival Jul 7, 2022
7f2e0e3
Skip failing test
simonrozsival Jul 7, 2022
c2615af
Add missing using
simonrozsival Jul 7, 2022
ae5b34f
Merge branch 'main' of https://github.com/dotnet/runtime into fix-sys…
simonrozsival Jul 8, 2022
a895adb
Remove temporary test data
simonrozsival Jul 11, 2022
26f9ed4
Merge branch 'main' of https://github.com/dotnet/runtime into fix-sys…
simonrozsival Jul 12, 2022
cf0ae39
Relax exception type assertion for Android
simonrozsival Jul 12, 2022
3498036
Merge branch 'main' of https://github.com/dotnet/runtime into fix-sys…
simonrozsival Jul 12, 2022
b73c45c
Code cleanup
simonrozsival Jul 13, 2022
390e63a
Merge branch 'main' of https://github.com/dotnet/runtime into fix-sys…
simonrozsival Jul 13, 2022
0802f46
Fix test failures in System.Net.WebSockets.Client.Tests
simonrozsival Jul 15, 2022
669b238
Merge branch 'main' of https://github.com/dotnet/runtime into fix-sys…
simonrozsival Jul 15, 2022
beef031
Remove active issue attribute
simonrozsival Jul 15, 2022
8b3e7fa
Remove most explicit usages of the server certificate custom validati…
simonrozsival Jul 15, 2022
901ad2f
Fix several tests
simonrozsival Jul 16, 2022
0388450
Remove weird condition
simonrozsival Jul 16, 2022
4ae8433
Code clean-up
simonrozsival Jul 18, 2022
50d3210
Remove unrelated active issue attributes
simonrozsival Jul 18, 2022
6d0d981
Turn ActiveIssue attributes into permanent SkipOnPlatform
simonrozsival Jul 18, 2022
43ad035
Update explanation for SkipOnPlatform
simonrozsival Jul 18, 2022
38ee4df
Revert partial fix and keep active issue
simonrozsival Jul 18, 2022
03883b7
Keep active issue for android x64 and x86
simonrozsival Jul 18, 2022
4ee991e
Remove invalid attribute
simonrozsival Jul 18, 2022
74970c1
Fix test on Browser
simonrozsival Jul 18, 2022
caff00b
Allow all certificates by default
simonrozsival Jul 18, 2022
4f63248
Fix build
simonrozsival Jul 18, 2022
a200ac6
Fix http client handler factory on Browser
simonrozsival Jul 19, 2022
59f7e61
Skip failing test
simonrozsival Jul 19, 2022
35b9ed0
Fix net48 build
simonrozsival Jul 19, 2022
8db4b45
Revert unintentional change in WinHttpHandler tests
simonrozsival Jul 19, 2022
6ad3302
Merge branch 'main' of https://github.com/dotnet/runtime into fix-sys…
simonrozsival Jul 19, 2022
33d52f1
Avoid using unsupported property on Browser
simonrozsival Jul 19, 2022
8608d46
Remove unnecessary default value
simonrozsival Jul 19, 2022
c07330b
Avoid using unsupported property on Browser
simonrozsival Jul 19, 2022
825654a
Merge branch 'main' of https://github.com/dotnet/runtime into fix-sys…
simonrozsival Jul 19, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix test failures in System.Net.WebSockets.Client.Tests
simonrozsival committed Jul 15, 2022

Verified

This commit was signed with the committer’s verified signature. The key has expired.
simonrozsival Šimon Rozsíval
commit 0802f46a689a7670a5469bdafbc8ace5c046b651
Original file line number Diff line number Diff line change
@@ -5,6 +5,8 @@
<DefineConstants>$(DefineConstants);NETSTANDARD</DefineConstants>
<!--Remove once this is fixed, https://github.com/dotnet/runtime/issues/71506 -->
<IlcTrimMetadata>false</IlcTrimMetadata>
<!-- the res/xml/network_security_config.xml file comes from the System.Net.TestData package -->
<IncludeNetworkSecurityConfig Condition="'$(TargetOS)' == 'Android'">true</IncludeNetworkSecurityConfig>
</PropertyGroup>

<PropertyGroup Condition="'$(TargetOS)' == 'Browser'">