blob: 7bd2a1e4990c91f3fa47d132a9ae85e65f15f669 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.shardingsphere.elasticjob.error.handler.email;
import org.apache.shardingsphere.elasticjob.error.handler.JobErrorHandlerPropertiesValidator;
import org.apache.shardingsphere.elasticjob.infra.spi.ElasticJobServiceLoader;
import org.junit.Before;
import org.junit.Test;
import java.util.Properties;
import static org.hamcrest.CoreMatchers.is;
import static org.junit.Assert.assertThat;
public final class EmailJobErrorHandlerPropertiesValidatorTest {
@Before
public void startup() {
ElasticJobServiceLoader.registerTypedService(JobErrorHandlerPropertiesValidator.class);
}
@Test
public void assertValidateWithNormal() {
Properties properties = new Properties();
properties.setProperty(EmailPropertiesConstants.HOST, "host");
properties.setProperty(EmailPropertiesConstants.SSL_TRUST, "*");
properties.setProperty(EmailPropertiesConstants.PORT, "465");
properties.setProperty(EmailPropertiesConstants.USERNAME, "username");
properties.setProperty(EmailPropertiesConstants.PASSWORD, "password");
properties.setProperty(EmailPropertiesConstants.FROM, "from@xxx.xx");
properties.setProperty(EmailPropertiesConstants.TO, "to@xxx.xx");
EmailJobErrorHandlerPropertiesValidator actual = getValidator();
actual.validate(properties);
}
@Test(expected = NullPointerException.class)
public void assertValidateWithPropsIsNull() {
EmailJobErrorHandlerPropertiesValidator actual = getValidator();
actual.validate(null);
}
@Test
public void assertValidateWithHostIsNull() {
EmailJobErrorHandlerPropertiesValidator actual = getValidator();
try {
actual.validate(new Properties());
} catch (NullPointerException e) {
assertThat(e.getMessage(), is(String.format("The property `%s` is required.", EmailPropertiesConstants.HOST)));
}
}
private EmailJobErrorHandlerPropertiesValidator getValidator() {
return (EmailJobErrorHandlerPropertiesValidator) ElasticJobServiceLoader.newTypedServiceInstance(JobErrorHandlerPropertiesValidator.class, "EMAIL", null).get();
}
}