use of io.syndesis.server.connector.generator.ConnectorGenerator in project syndesis by syndesisio.
the class BaseConnectorGeneratorHandler method withGeneratorAndTemplate.
final <T> T withGeneratorAndTemplate(final String templateId, final BiFunction<ConnectorGenerator, ConnectorTemplate, T> callback) {
final ConnectorTemplate connectorTemplate = getDataManager().fetch(ConnectorTemplate.class, templateId);
if (connectorTemplate == null) {
throw new EntityNotFoundException("Connector template: " + templateId);
}
final ConnectorGenerator connectorGenerator = context.getBean(templateId, ConnectorGenerator.class);
if (connectorGenerator == null) {
throw new EntityNotFoundException("Unable to find connector generator for connector template with id: " + templateId);
}
return callback.apply(connectorGenerator, connectorTemplate);
}
use of io.syndesis.server.connector.generator.ConnectorGenerator in project syndesis by syndesisio.
the class CustomConnectorHandlerTest method shouldCreateNewConnectorsBasedOnConnectorTemplates.
@Test
public void shouldCreateNewConnectorsBasedOnConnectorTemplates() {
final Map<String, ConfigurationProperty> properties = new HashMap<>();
properties.put("prop1", new ConfigurationProperty.Builder().build());
final Map<String, ConfigurationProperty> connectorProperties = new HashMap<>();
connectorProperties.put("prop2", new ConfigurationProperty.Builder().build());
connectorProperties.put("prop3", new ConfigurationProperty.Builder().build());
final ConnectorGroup group = new ConnectorGroup.Builder().name("connector template group").build();
final ConnectorTemplate connectorTemplate = //
new ConnectorTemplate.Builder().id(//
"connector-template-id").name(//
"connector template").properties(properties).connectorProperties(//
connectorProperties).connectorGroup(//
group).build();
final ConnectorAction action = new ConnectorAction.Builder().name("action").build();
when(dataManager.fetch(ConnectorTemplate.class, "connector-template-id")).thenReturn(connectorTemplate);
when(dataManager.create(any(Connector.class))).thenAnswer(invocation -> invocation.getArgumentAt(0, Connector.class));
when(applicationContext.getBean("connector-template-id", ConnectorGenerator.class)).thenReturn(new ConnectorGenerator() {
@Override
public Connector generate(final ConnectorTemplate connectorTemplate, final ConnectorSettings connectorSettings) {
return new Connector.Builder().createFrom(baseConnectorFrom(connectorTemplate, connectorSettings)).putAllProperties(connectorProperties).putConfiguredProperty("prop1", "value1").addAction(action).build();
}
@Override
public ConnectorSummary info(final ConnectorTemplate connectorTemplate, final ConnectorSettings connectorSettings) {
return null;
}
});
final Connector created = //
new CustomConnectorHandler(dataManager, applicationContext, iconDao).create(//
new ConnectorSettings.Builder().connectorTemplateId(//
"connector-template-id").name(//
"new connector").description(//
"new connector description").icon(//
"new connector icon").putConfiguredProperty("prop1", //
"value1").putConfiguredProperty("unknown-prop", //
"unknown-value").build());
final Connector expected = //
new Connector.Builder().id(//
created.getId()).name(//
"new connector").description(//
"new connector description").icon(//
"new connector icon").connectorGroup(//
group).properties(//
connectorProperties).putConfiguredProperty("prop1", //
"value1").addAction(//
action).build();
assertThat(created).isEqualTo(expected);
}
use of io.syndesis.server.connector.generator.ConnectorGenerator in project syndesis by syndesisio.
the class CustomConnectorHandlerTest method shouldProvideInfoAboutAppliedConnectorSettings.
@Test
public void shouldProvideInfoAboutAppliedConnectorSettings() {
final CustomConnectorHandler handler = new CustomConnectorHandler(dataManager, applicationContext, iconDao);
final ConnectorGenerator connectorGenerator = mock(ConnectorGenerator.class);
final ConnectorTemplate template = new ConnectorTemplate.Builder().build();
final ConnectorSettings connectorSettings = new ConnectorSettings.Builder().connectorTemplateId("connector-template").build();
final ConnectorSummary preparedSummary = new ConnectorSummary.Builder().build();
when(dataManager.fetch(ConnectorTemplate.class, "connector-template")).thenReturn(template);
when(applicationContext.getBean("connector-template", ConnectorGenerator.class)).thenReturn(connectorGenerator);
when(connectorGenerator.info(same(template), same(connectorSettings))).thenReturn(preparedSummary);
final ConnectorSummary info = handler.info(connectorSettings);
assertThat(info).isSameAs(preparedSummary);
}
Aggregations