/** * This file is part of Graylog. * * Graylog is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Graylog is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Graylog. If not, see <http://www.gnu.org/licenses/>. */ package org.graylog2.plugin.configuration.fields; import org.junit.Test; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; public class TextFieldTest { @Test public void testGetFieldType() throws Exception { TextField f = new TextField("test", "Name", "default", "description"); assertEquals(TextField.FIELD_TYPE, f.getFieldType()); } @Test public void testGetName() throws Exception { TextField f = new TextField("test", "Name", "default", "description"); assertEquals("test", f.getName()); } @Test public void testGetHumanName() throws Exception { TextField f = new TextField("test", "Name", "default", "description"); assertEquals("Name", f.getHumanName()); } @Test public void testGetDescription() throws Exception { TextField f = new TextField("test", "Name", "default", "description"); assertEquals("description", f.getDescription()); } @Test public void testGetDefaultValue() throws Exception { TextField f = new TextField("test", "Name", "default", "description"); assertEquals("default", f.getDefaultValue()); } @Test public void testIsOptional() throws Exception { TextField f = new TextField("test", "Name", "default", "description", ConfigurationField.Optional.OPTIONAL); assertEquals(ConfigurationField.Optional.OPTIONAL, f.isOptional()); TextField f2 = new TextField("test", "Name", "default", "description", ConfigurationField.Optional.NOT_OPTIONAL); assertEquals(ConfigurationField.Optional.NOT_OPTIONAL, f2.isOptional()); } @Test public void testGetAttributes() throws Exception { TextField f = new TextField("test", "Name", "default", "description"); assertEquals(0, f.getAttributes().size()); TextField f1 = new TextField("test", "Name", "default", "description", TextField.Attribute.IS_PASSWORD); assertEquals(1, f1.getAttributes().size()); assertTrue(f1.getAttributes().contains("is_password")); } }