public void Create_CreatesValidServiceBinding_NoUri() { var s = new Service() { Label = "elephantsql", Tags = new string[] { "postgresql", "relational" }, Name = "postgresService", Plan = "free", Credentials = new Credential() { { "hostname", new Credential("192.168.0.90") }, { "port", new Credential("3306") }, { "name", new Credential("cf_b4f8d2fa_a3ea_4e3a_a0e8_2cd040790355") }, { "username", new Credential("Dd6O1BPXUHdrmzbP") }, { "password", new Credential("7E1LxXnlH2hhlPVt") } } }; var factory = new PostgresServiceInfoFactory(); var info = factory.Create(s) as PostgresServiceInfo; Assert.NotNull(info); Assert.Equal("postgresService", info.Id); Assert.Equal("7E1LxXnlH2hhlPVt", info.Password); Assert.Equal("Dd6O1BPXUHdrmzbP", info.UserName); Assert.Equal("192.168.0.90", info.Host); Assert.Equal(3306, info.Port); Assert.Equal("cf_b4f8d2fa_a3ea_4e3a_a0e8_2cd040790355", info.Path); }
public void Create_CreatesValidServiceBinding() { Service s = new Service() { Label = "elephantsql", Tags = new string[] { "postgresql", "relational" }, Name = "postgresService", Plan = "free", Credentials = new Credential() { { "hostname", new Credential("192.168.0.90") }, { "port", new Credential("3306") }, { "name", new Credential("cf_b4f8d2fa_a3ea_4e3a_a0e8_2cd040790355") }, { "username", new Credential("Dd6O1BPXUHdrmzbP") }, { "password", new Credential("7E1LxXnlH2hhlPVt") }, { "uri", new Credential("postgres://*****:*****@192.168.0.90:3306/cf_b4f8d2fa_a3ea_4e3a_a0e8_2cd040790355?reconnect=true") }, { "jdbcUrl", new Credential("jdbc:postgres://192.168.0.90:3306/cf_b4f8d2fa_a3ea_4e3a_a0e8_2cd040790355?user=Dd6O1BPXUHdrmzbP&password=7E1LxXnlH2hhlPVt") } } }; PostgresServiceInfoFactory factory = new PostgresServiceInfoFactory(); var info = factory.Create(s) as PostgresServiceInfo; Assert.NotNull(info); Assert.Equal("postgresService", info.Id); Assert.Equal("7E1LxXnlH2hhlPVt", info.Password); Assert.Equal("Dd6O1BPXUHdrmzbP", info.UserName); Assert.Equal("192.168.0.90", info.Host); Assert.Equal(3306, info.Port); Assert.Equal("cf_b4f8d2fa_a3ea_4e3a_a0e8_2cd040790355", info.Path); Assert.Equal("reconnect=true", info.Query); }