Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Tests | Activate "ActiveIssue" tests#3304

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Draft
benrr101 wants to merge27 commits intomain
base:main
Choose a base branch
Loading
fromdev/russellben/mz-enable-activeissue-tests
Draft
Changes from1 commit
Commits
Show all changes
27 commits
Select commitHold shift + click to select a range
232fefb
Use Assert.Throws instead of home-grown
MichelZNov 18, 2024
2f95c8a
Activate WeakRefTestYukonSpecific, it runs fine on Linux
MichelZNov 18, 2024
4aa1123
Activate IntegratedAuthenticationTest, it runs fine
MichelZNov 18, 2024
c97b74a
Activate LocalDBTest, make sure Local DB is present. They run fine
MichelZNov 18, 2024
ae33c5f
Activate reliability tests, they run fine
MichelZNov 18, 2024
6fcd405
Activate Credential Tests, they seem to work fine
MichelZNov 18, 2024
68b7e1a
Activate CommandCancel tests, add Conditions to existing issue
MichelZNov 18, 2024
372c4bd
Activate Udt tests, they seem to work fine
MichelZNov 18, 2024
a46ca19
Activate PacketNumberWraparound test, it works fine
MichelZNov 18, 2024
aefc7f2
Improve certificate tests by checking IsAdmin outside the constructor
MichelZNov 18, 2024
fbcb046
- Remove AsyncTest (why would Async be faster than Sync?)
MichelZNov 18, 2024
801d2f3
Fix grammatical errors
MichelZNov 18, 2024
04bce8e
Use Close instead of Dispose, as Dispose swallows the exception
MichelZNov 24, 2024
910688a
Remove comment about IPv6 & Cert as this now works in NET8+
MichelZNov 24, 2024
e44241e
Do not run XEvent test on azure
MichelZNov 24, 2024
0e3ad41
The rest of the tests run fine on Azure
MichelZNov 24, 2024
19340e4
Fix azure check
MichelZNov 24, 2024
76af285
Disable more tests for Azure
MichelZNov 25, 2024
178c7cf
Also disable named instances
MichelZNov 25, 2024
6c0204e
Remove ExectueXmlReaderTest on ARM
MichelZNov 25, 2024
0b106c5
Disable tests with proxy for azure
MichelZNov 25, 2024
7e2dc88
Add data ordering to queries
MichelZNov 27, 2024
d1a2347
Enable test on ARM
MichelZNov 27, 2024
2c7320d
Remove whitespace
MichelZNov 27, 2024
b5005bc
Restore newline
MichelZDec 3, 2024
1cca601
Removing duplicated method
benrr101Apr 28, 2025
6fda8e2
Merge branch 'main' into dev/russellben/mz-enable-activeissue-tests
benrr101Jul 10, 2025
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
PrevPrevious commit
NextNext commit
Also disable named instances
  • Loading branch information
@MichelZ@benrr101
MichelZ authored andbenrr101 committedApr 24, 2025
commit178c7cf2ff653a96aea8002c30c65ab093c35b41
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -179,8 +179,8 @@ private static void RunAllTestsForSingleServer(string connectionString, bool usi
StreamingBlobDataTypes(connectionString);
OutOfOrderGetChars(connectionString);

// Azure Database does not support Server scoped XEvents and the timeout tests use the ProxyServer which also does not work
if (IsAzureSqlServer(connectionString))
// Azure Database does not support Server scoped XEvents and the timeout tests use the ProxyServer which also does not work on Azure and on named instances
if (IsAzureSqlServer(connectionString) || IsNamedInstance(connectionString))
{
return;
}
Expand DownExpand Up@@ -269,6 +269,11 @@ private static bool IsAzureSqlServer(string connectionString)
{
return Utils.IsAzureSqlServer(new SqlConnectionStringBuilder(connectionString).DataSource);
}

private static bool IsNamedInstance(string connectionString)
{
return new SqlConnectionStringBuilder(connectionString).DataSource.Contains(@"\");
}

private static void InvalidRead(string connectionString)
{
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp