/** * Copyright (c) 2008--2010 Red Hat, Inc. * * This software is licensed to you under the GNU General Public License, * version 2 (GPLv2). There is NO WARRANTY for this software, express or * implied, including the implied warranties of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 * along with this software; if not, see * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. * * Red Hat trademarks are not licensed under GPLv2. No permission is * granted to use or replicate Red Hat trademarks that are incorporated * in this software or its documentation. */ package com.redhat.satellite.search.index.builder.tests; import com.redhat.satellite.search.index.builder.BuilderFactory; import com.redhat.satellite.search.index.builder.DocumentBuilder; import com.redhat.satellite.search.index.builder.ServerCustomInfoDocumentBuilder; import org.apache.lucene.document.Document; import junit.framework.TestCase; import java.util.HashMap; import java.util.Map; /** * ServerCustomInfoDocumentBuilderTest * @version $Rev$ */ public class ServerCustomInfoDocumentBuilderTest extends TestCase { public void testBuilderDocument() { Map<String, String> metadata = new HashMap<String, String>(); metadata.put("value", "value"); metadata.put("serverId", "server id"); DocumentBuilder db = BuilderFactory.getBuilder( BuilderFactory.SERVER_CUSTOM_INFO_TYPE); assertTrue(db instanceof ServerCustomInfoDocumentBuilder); Document doc = db.buildDocument(new Long(10), metadata); assertNotNull(doc); assertEquals(doc.getField("id").stringValue(), new Long(10).toString()); assertEquals(doc.getField("value").stringValue(), "value"); assertEquals(doc.getField("serverId").stringValue(), "server id"); } }