use of com.thoughtworks.go.config.SiteUrls in project gocd by gocd.
the class ServerSiteUrlsConfigRepresenter method fromJson.
public static SiteUrls fromJson(JsonReader jsonReader) {
String siteUrl = jsonReader.getStringOrDefault("site_url", null);
String secureSiteUrl = jsonReader.getStringOrDefault("secure_site_url", null);
return new SiteUrls(new SiteUrl(siteUrl), new SecureSiteUrl(secureSiteUrl));
}
use of com.thoughtworks.go.config.SiteUrls in project gocd by gocd.
the class CreateOrUpdateConfigServerSiteUrlsCommandTest method shouldAddBackupConfig.
@Test
void shouldAddBackupConfig() throws Exception {
SiteUrls siteUrls = new SiteUrls(new SiteUrl("http://foo"), new SecureSiteUrl("https://bar"));
CreateOrUpdateConfigServerSiteUrlsCommand command = new CreateOrUpdateConfigServerSiteUrlsCommand(siteUrls);
command.update(cruiseConfig);
assertThat(cruiseConfig.server().getSiteUrls()).isEqualTo(siteUrls);
}
Aggregations