Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

PostgreSqlStorageTest.cs 1.5 KiB

il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. using Dapper;
  2. using Xunit;
  3. namespace DotNetCore.CAP.PostgreSql.Test
  4. {
  5. [Collection("postgresql")]
  6. public class SqlServerStorageTest : DatabaseTestHost
  7. {
  8. private readonly string _masterDbConnectionString;
  9. private readonly string _dbConnectionString;
  10. public SqlServerStorageTest()
  11. {
  12. _masterDbConnectionString = ConnectionUtil.GetMasterConnectionString();
  13. _dbConnectionString = ConnectionUtil.GetConnectionString();
  14. }
  15. [Fact]
  16. public void Database_IsExists()
  17. {
  18. using (var connection = ConnectionUtil.CreateConnection(_masterDbConnectionString))
  19. {
  20. var databaseName = ConnectionUtil.GetDatabaseName();
  21. var sql = $@"select * from pg_database where datname = '{databaseName}'";
  22. var result = connection.QueryFirstOrDefault<string>(sql);
  23. Assert.NotNull(result);
  24. Assert.True(databaseName.Equals(result, System.StringComparison.CurrentCultureIgnoreCase));
  25. }
  26. }
  27. [Theory]
  28. [InlineData("cap.published")]
  29. [InlineData("cap.received")]
  30. public void DatabaseTable_IsExists(string tableName)
  31. {
  32. using (var connection = ConnectionUtil.CreateConnection(_dbConnectionString))
  33. {
  34. var sql = $"SELECT to_regclass('{tableName}') is not null;";
  35. var result = connection.QueryFirstOrDefault<bool>(sql);
  36. Assert.True(result);
  37. }
  38. }
  39. }
  40. }