Skip to content

Commit 0ba7531

Browse files
committed
Tests framework: add new versions + some connection strings fixed
1 parent b9bc5bb commit 0ba7531

2 files changed

Lines changed: 19 additions & 3 deletions

File tree

Orm/Xtensive.Orm.Tests.Framework/Orm.config

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,11 +100,14 @@
100100
connectionUrl="firebird://dotest:dotest@localhost:3050/dotest" />
101101

102102
<domain name="firebird30"
103-
connectionUrl="firebird://dotest:dotest@localhost:3053/dotest" />
103+
connectionUrl="firebird://dotest:dotest@localhost:3053/dotest" />
104104

105105
<domain name="firebird40"
106106
connectionUrl="firebird://dotest:dotest@localhost:3054/dotest" />
107107

108+
<domain name="firebird50"
109+
connectionUrl="firebird://dotest:dotest@localhost:3055/dotest" />
110+
108111
<domain name="sqlite3"
109112
connectionUrl="sqlite:///DO-Tests.db3" />
110113

@@ -207,7 +210,10 @@
207210
connectionString="User=dotest;Password=dotest;Database=dotest;DataSource=localhost;Port=3053;Dialect=3;Charset=UTF8;Role=;Connection lifetime=15;Pooling=true;MinPoolSize=0;MaxPoolSize=50;Packet Size=8192;ServerType=0" />
208211

209212
<domain name="firebird40cs" provider="firebird"
210-
connectionString="User=dotest;Password=dotest;Database=dotest;DataSource=localhost;Port=3050;Dialect=3;Charset=UTF8;Role=;Connection lifetime=15;Pooling=true;MinPoolSize=0;MaxPoolSize=50;Packet Size=8192;ServerType=0" />
213+
connectionString="User=dotest;Password=dotest;Database=dotest;DataSource=localhost;Port=3054;Dialect=3;Charset=UTF8;Role=;Connection lifetime=15;Pooling=true;MinPoolSize=0;MaxPoolSize=50;Packet Size=8192;ServerType=0" />
214+
215+
<domain name="firebird50cs" provider="firebird"
216+
connectionString="User=dotest;Password=dotest;Database=dotest;DataSource=localhost;Port=3055;Dialect=3;Charset=UTF8;Role=;Connection lifetime=15;Pooling=true;MinPoolSize=0;MaxPoolSize=50;Packet Size=8192;ServerType=0" />
211217

212218
<domain name="sqlite3cs" provider="sqlite"
213219
connectionString="Data Source=DO-Tests.db3" />

Orm/Xtensive.Orm.Tests.Framework/StorageProviderVersion.cs

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,19 @@ public static class StorageProviderVersion
4444
public static Version MySql55 = new Version(5, 5);
4545
public static Version MySql56 = new Version(5, 6);
4646
public static Version MySql57 = new Version(5, 7);
47-
public static Version Mysql80 = new Version(8, 0);
47+
public static Version MySql80 = new Version(8, 0);
48+
public static Version MySql81 = new Version(8, 1);
49+
public static Version MySql82 = new Version(8, 2);
50+
public static Version MySql83 = new Version(8, 3);
51+
public static Version MySql84 = new Version(8, 4);
52+
public static Version MySql90 = new Version(9, 0);
53+
public static Version MySql91 = new Version(9, 1);
54+
public static Version MySql92 = new Version(9, 2);
55+
public static Version MySql93 = new Version(9, 3);
4856

4957
public static Version Firebird25 = new Version(2, 5);
5058
public static Version Firebird30 = new Version(3, 0);
59+
public static Version Firebird40 = new Version(4, 0);
60+
public static Version Firebird50 = new Version(5, 0);
5161
}
5262
}

0 commit comments

Comments
 (0)