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

Add PostgreSQL tests into GitHub action workflow. Fix a few breaking changes in PostgreSQL driver #226

Merged
merged 27 commits into from
May 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
163265f
Configure PostgreSQL testing
SergeiPavlov May 3, 2024
d764b54
Ignore non-public AuthIds
SergeiPavlov May 6, 2024
bf08f9a
Fiix Schema extracting
SergeiPavlov May 7, 2024
fbbc6f6
test-postgres.yaml
SergeiPavlov May 7, 2024
275c21c
Add Github Action
SergeiPavlov May 7, 2024
d33287e
Replace pghost -> localhost
SergeiPavlov May 7, 2024
48fc72f
PGSERVICE
SergeiPavlov May 7, 2024
e58bf71
Rearrange
SergeiPavlov May 7, 2024
3efff7d
PGSERVICE
SergeiPavlov May 7, 2024
3d20a60
Merqe Postgres Tests with SQL Server tests
SergeiPavlov May 7, 2024
f6f5760
Add env vars
SergeiPavlov May 7, 2024
bf72c51
Fix BindDateTime()
SergeiPavlov May 8, 2024
7967812
Run Xtensive.Orm.Tests for both: Postgres & SQL Server
SergeiPavlov May 8, 2024
e4f4c24
Mute Issue0713_InconsistentDefaultDateTimeValues
SergeiPavlov May 8, 2024
eedadd8
revert some changes
SergeiPavlov May 8, 2024
78fb1ce
DateTimeOffsetConstructorTest
SergeiPavlov May 8, 2024
754b486
MutePostgreSqlAttribute
SergeiPavlov May 8, 2024
5b21d00
Correct filter string
SergeiPavlov May 8, 2024
8eac134
Correct filter string
SergeiPavlov May 8, 2024
5623e7a
Correct filter string
SergeiPavlov May 8, 2024
90c085a
Correct filter string
SergeiPavlov May 8, 2024
86fdd88
Mute a few Postgres tests
SergeiPavlov May 8, 2024
9fe7c1e
Mute a few Postgres tests
SergeiPavlov May 8, 2024
02384ae
SET TIME ZONE UTC
SergeiPavlov May 8, 2024
e7ce40c
SET TIME ZONE UTC
SergeiPavlov May 8, 2024
9cc2ca2
set-timezone github action
SergeiPavlov May 8, 2024
db94450
Mute
SergeiPavlov May 8, 2024
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
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8
- name: Build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dotnet_build_master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore dependencies
Expand Down
34 changes: 29 additions & 5 deletions .github/workflows/test-sql.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: Tests with SQL Server
name: Tests with PostgreSQL & SQL Server
on:
pull_request:
branches: [ master-servicetitan ]
env:
DOTNET_CLI_TELEMETRY_OPTOUT: true
DO_CONFIG_FILE: "/tmp/do-test.cfg"
DO_TargetFrameworks: net8.0
SQL_PASSWD: dbatools.I0
Expand All @@ -12,21 +13,44 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 120
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: szenius/[email protected]
with:
timezoneLinux: "UTC"
- name: Setup .NET
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with: { dotnet-version: 8 }
- name: Build SQL Docker image with FTS feature
run: docker build -t sql .github/actions/mssql-fts
- uses: ikalnytskyi/action-setup-postgres@v6
- name: Init PostgreSQL Test DB
run: |
createuser dotest
createdb --owner dotest dotest
psql -c "ALTER USER dotest WITH PASSWORD 'dotest' SUPERUSER"
env:
PGSERVICE: postgres
- name: Run SQL Server container
run: docker run -e ACCEPT_EULA=Y -e MSSQL_PID='Developer' -e MSSQL_SA_PASSWORD=${SQL_PASSWD} -p 1433:1433 -d sql
- name: Build
run: dotnet build -v q Orm.sln
- name: Init Test DB
run: sqlcmd -U sa -P $SQL_PASSWD -C -i Orm/Xtensive.Orm.Tests.Framework/DO-Tests.sql && sqlcmd -U sa -P $SQL_PASSWD -C -i Orm/Xtensive.Orm.Tests.Framework/DO-Tests-Plus.sql
- name: Create DO Tests Config file
- name: Create PostgreSQL DO Tests Config file
run: echo default=postgresql://dotest:dotest@localhost/dotest >$DO_CONFIG_FILE
- name: Xtensive.Orm.Tests.Sql with PostgreSQL
run: dotnet test --no-build -v n Orm/Xtensive.Orm.Tests.Sql/Xtensive.Orm.Tests.Sql.csproj --filter 'TestCategory!=Mute'
env:
DO_STORAGE: pgsql160
- name: Xtensive.Orm.Tests with PostgreSQL
run: dotnet test --no-build -v n Orm/Xtensive.Orm.Tests/Xtensive.Orm.Tests.csproj --filter '(TestCategory!=Mute)&(TestCategory!=MutePostgreSql)'
env:
DO_STORAGE: pgsql160
- name: Create SQL Server DO Tests Config file
run: echo default=sqlserver://sa:${SQL_PASSWD}@localhost/DO-Tests?MultipleActiveResultSets=True >$DO_CONFIG_FILE
- name: Tests
- name: Xtensive.Orm.Tests with SQL Server
run: dotnet test --no-build -v n Orm/Xtensive.Orm.Tests/Xtensive.Orm.Tests.csproj --filter 'TestCategory!=Mute'
env:
DO_STORAGE: default


Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ protected override SqlDriver CreateDriver(string connectionString, SqlDriverConf
OpenConnectionFast(connection, configuration, false).GetAwaiter().GetResult();
var version = GetVersion(configuration, connection);
var defaultSchema = GetDefaultSchema(connection);
SqlHelper.ExecuteInitializationSql(connection, @"SET TIME ZONE 'UTC'");
return CreateDriverInstance(connectionString, version, defaultSchema);
}

Expand All @@ -79,6 +80,7 @@ protected override async Task<SqlDriver> CreateDriverAsync(
await OpenConnectionFast(connection, configuration, true, token).ConfigureAwait(false);
var version = GetVersion(configuration, connection);
var defaultSchema = await GetDefaultSchemaAsync(connection, token: token).ConfigureAwait(false);
await SqlHelper.ExecuteInitializationSqlAsync(connection, @"SET TIME ZONE 'UTC'", token);
return CreateDriverInstance(connectionString, version, defaultSchema);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ internal class Compiler : SqlCompiler
public override void Visit(SqlDeclareCursor node)
{
}

/// <inheritdoc/>
public override void Visit(SqlOpenCursor node) => base.Visit(node.Cursor.Declare());

Expand Down Expand Up @@ -574,4 +573,4 @@ protected internal Compiler(SqlDriver driver)
{
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -514,15 +514,18 @@ protected virtual void ReadSchemaData(DbDataReader dataReader, ExtractionContext
{
var oid = Convert.ToInt64(dataReader["oid"]);
var name = dataReader["nspname"].ToString();
var owner = Convert.ToInt64(dataReader["nspowner"]);
var ownerOid = Convert.ToInt64(dataReader["nspowner"]);

var catalog = context.Catalog;
var schema = catalog.Schemas[name] ?? catalog.CreateSchema(name);
if (name == "public") {
catalog.DefaultSchema = schema;
}

schema.Owner = context.UserLookup[owner];
if (context.UserLookup.TryGetValue(ownerOid, out var ownerName)) {
schema.Owner = ownerName;
}

context.SchemaMap[oid] = schema;
context.ReversedSchemaMap[schema] = oid;
}
Expand Down Expand Up @@ -1432,4 +1435,4 @@ public Extractor(SqlDriver driver)
{
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ public override void Translate(SqlCompilerContext context, SqlDeclareCursor node
case DeclareCursorSection.Exit:
break;
case DeclareCursorSection.For:
_ = output.Append("FOR");
_ = output.Append("FOR ");
break;
default:
base.Translate(context, node, section);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,12 +124,31 @@ public override void BindGuid(DbParameter parameter, object value)
parameter.Value = value == null ? (object) DBNull.Value : SqlHelper.GuidToString((Guid) value);
}

public override void BindDateTime(DbParameter parameter, object value)
{
parameter.DbType = DbType.DateTime2;
if (value is DateTime dt) {
// ((NpgsqlParameter) parameter).NpgsqlDbType = NpgsqlDbType.TimestampTz;
var utc = dt.Kind switch {
DateTimeKind.Local => dt.ToUniversalTime(),
DateTimeKind.Utc => dt,
_ => DateTime.SpecifyKind(dt, DateTimeKind.Utc)
};
var unspec = DateTime.SpecifyKind(utc, DateTimeKind.Unspecified);
parameter.Value = unspec;
}
else {
parameter.Value = DBNull.Value;
}
}

[SecuritySafeCritical]
public override void BindDateTimeOffset(DbParameter parameter, object value)
{
var nativeParameter = (NpgsqlParameter) parameter;
nativeParameter.NpgsqlDbType = NpgsqlDbType.TimestampTz;
nativeParameter.NpgsqlValue = value ?? DBNull.Value;
if (value is DateTimeOffset dto) {
value = dto.ToUniversalTime();
}
base.BindDateTimeOffset(parameter, value);
}

public override SqlValueType MapByte(int? length, int? precision, int? scale)
Expand Down
12 changes: 5 additions & 7 deletions Orm/Xtensive.Orm.Tests.Framework/MuteAttribute.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
using NUnit.Framework;

namespace Xtensive.Orm.Tests
{
public class MuteAttribute : CategoryAttribute
{
public MuteAttribute() : base("Mute") {}
}
}
namespace Xtensive.Orm.Tests;

public class MuteAttribute() : CategoryAttribute("Mute");

public class MutePostgreSqlAttribute() : CategoryAttribute("MutePostgreSql");
12 changes: 12 additions & 0 deletions Orm/Xtensive.Orm.Tests.Framework/Orm.config
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,12 @@
<domain name="pgsql150"
connectionUrl="postgresql://dotest:dotest@localhost:54150/dotest" />

<domain name="pgsql160"
connectionUrl="postgresql://dotest:dotest@localhost:5432/dotest" />

<domain name="pgsql160pghost"
connectionUrl="postgresql://dotest:dotest@pghost:5432/dotest" />

<domain name="oracle10"
connectionUrl="oracle://dotest:dotest@localhost:5510/ora10" />

Expand Down Expand Up @@ -167,6 +173,12 @@
<domain name="pgsql150cs" provider="postgresql"
connectionString="HOST=localhost;PORT=54150;DATABASE=dotest;USER ID=dotest;PASSWORD=dotest" />

<domain name="pgsql160cs" provider="postgresql"
connectionString="HOST=localhost;PORT=5432;DATABASE=dotest;USER ID=dotest;PASSWORD=dotest" />

<domain name="pgsql160pghostcs" provider="postgresql"
connectionString="HOST=pghost;PORT=5432;DATABASE=dotest;USER ID=dotest;PASSWORD=dotest" />

<domain name="oracle10cs" provider="oracle"
connectionString="DATA SOURCE=&quot;(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=5510))(CONNECT_DATA=(SERVICE_NAME=ora10)))&quot;;USER ID=dotest;PASSWORD=dotest" />

Expand Down
1 change: 1 addition & 0 deletions Orm/Xtensive.Orm.Tests.Sql/ExceptionTypesTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,7 @@ public virtual void DeadlockTest()
}

[Test]
[Ignore("Timeout fails")]
public virtual void TimeoutTest()
{
var table = schema.CreateTable(TimeoutTableName);
Expand Down
1 change: 1 addition & 0 deletions Orm/Xtensive.Orm.Tests.Sql/PostgreSql/ExtractorTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ protected virtual string GetExtractDateTimeOffsetFieldsCleanupScript(string tabl
}

[Test]
[Ignore("PostgreSQL does not support default values for timestamp with time zone")]
public void ExtractDateTimeOffsetFields()
{
var createTableQuery = GetExtractDateTimeOffsetFieldsPrepareScript("InteractionLog");
Expand Down
7 changes: 4 additions & 3 deletions Orm/Xtensive.Orm.Tests.Sql/PostgreSql/SqlDomTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1126,7 +1126,7 @@ public void LimitsTest()
{
var q = SqlDml.Select();

q.Columns.Add(SqlDml.Power(SqlDml.Cast(10, SqlType.Decimal), 50));
q.Columns.Add(SqlDml.Power(SqlDml.Cast(10, SqlType.Decimal), 20));
q.Columns.Add(SqlDml.Cast(SqlDml.Literal(DateTime.MinValue), SqlType.DateTime), "datetime min");
//casting in the DBMS rounds to 100000101 00:00:00 somewhy (?)
//q.Columns.Add(Sql.Cast(Sql.Literal(DateTime.MaxValue), SqlDataType.DateTime, Driver.ServerInfoProvider.MaxDateTimePrecision,0), "datetime max");
Expand Down Expand Up @@ -2236,7 +2236,8 @@ DataTable Execute(ISqlCompileUnit stmt)
protected void ExecuteNonQuery(ISqlCompileUnit stmt)
{
using var cmd = Connection.CreateCommand(stmt);
_ = cmd.ExecuteNonQuery();
if (!string.IsNullOrEmpty(cmd.CommandText))
_ = cmd.ExecuteNonQuery();
}

protected DbDataReader ExecuteQuery(ISqlCompileUnit stmt)
Expand Down Expand Up @@ -2318,4 +2319,4 @@ public void RenameTest()
}
}
}
}
}
2 changes: 1 addition & 1 deletion Orm/Xtensive.Orm.Tests.Sql/SqlTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ protected Schema ExtractDefaultSchema()
protected int ExecuteNonQuery(string commandText)
{
using (var command = Connection.CreateCommand(commandText))
return command.ExecuteNonQuery();
return command.ExecuteNonQuery();
}

protected int ExecuteNonQuery(SqlConnection connection, string commandText)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ protected override void AddUpgradeHints(ISet<UpgradeHint> hints)
}

[Test]
[MutePostgreSql]
public void MainTest()
{
var configuration1 = DomainConfigurationFactory.Create();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ public class IssueJira0675_EntityChangeRegistryDoesntClear : AutoBuildTest
private const int MaxEntities = 50;

[Test]
[MutePostgreSql]
public void TestTransactionRollbackOnDeadLock()
{
var task1 = System.Threading.Tasks.Task.Factory.StartNew(() => UpdateEntities(1));
Expand Down Expand Up @@ -412,4 +413,4 @@ protected override DomainConfiguration BuildConfiguration()
return configuration;
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ public void ExtractMonthTest()
}

[Test]
[MutePostgreSql]
public void ExtractDayTest()
{
ExecuteInsideSession(() => {
Expand Down Expand Up @@ -323,4 +324,4 @@ public void ExtractOffsetTest()
});
}
}
}
}
1 change: 1 addition & 0 deletions Orm/Xtensive.Orm.Tests/Linq/IndexHintTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ public void IndexHintWithImplicitEntitySpecification()
}

[Test]
[MutePostgreSql]
public void NonExistingIndexHint()
{
var session = Session.Demand();
Expand Down
5 changes: 4 additions & 1 deletion Orm/Xtensive.Orm.Tests/Storage/IgnoreRulesValidateTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -754,6 +754,7 @@ public void UpgradeDomainWithIgnoreRuleByMaskInPerformSafelyModeTest()
}

[Test]
[MutePostgreSql]
public void MultischemaValidateTest()
{
Require.AllFeaturesSupported(ProviderFeatures.Multischema);
Expand Down Expand Up @@ -816,6 +817,7 @@ public void MultidatabaseValidateTest()
}

[Test]
[MutePostgreSql]
public void MultischemaUpgrageInPerformModeTest()
{
Require.AllFeaturesSupported(ProviderFeatures.Multischema);
Expand Down Expand Up @@ -853,6 +855,7 @@ public void MultischemaUpgrageInPerformModeTest()
}

[Test]
[MutePostgreSql]
public void MultischemaUpgrageInPerformSafelyModeTest()
{
Require.AllFeaturesSupported(ProviderFeatures.Multischema);
Expand Down Expand Up @@ -1308,4 +1311,4 @@ private SqlValueType GetTypeForInteger(SqlType sqlType)
: new SqlValueType(sqlType);
}
}
}
}
3 changes: 2 additions & 1 deletion Orm/Xtensive.Orm.Tests/Storage/PostgreSqlSpatialTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ protected override void CheckRequirements()
}

[Test]
[MutePostgreSql]
public void MainTest()
{
NpgsqlPoint point = new NpgsqlPoint(1, 2);
Expand Down Expand Up @@ -135,4 +136,4 @@ public void OutputRecord(Container record)
Console.WriteLine("Circle - <({0},{1}),{2}>", record.Circle.Center.X, record.Circle.Center.Y, record.Circle.Radius);
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,7 @@ public async Task SingleSchemaWithDatabaseSwitchAsyncTest()
}

[Test]
[MutePostgreSql]
public void MultischemaTest()
{
Require.AllFeaturesSupported(ProviderFeatures.Multischema);
Expand Down Expand Up @@ -330,6 +331,7 @@ public void MultischemaTest()
}

[Test]
[MutePostgreSql]
public async Task MultischemaAsyncTest()
{
Require.AllFeaturesSupported(ProviderFeatures.Multischema);
Expand Down Expand Up @@ -876,4 +878,4 @@ public async Task MultinodeAsyncTest3()
}
}
}
}
}
Loading