/* * JBoss, Home of Professional Open Source. * See the COPYRIGHT.txt file distributed with this work for information * regarding copyright ownership. Some portions may be licensed * to Red Hat, Inc. under one or more contributor license agreements. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301 USA. */ package org.teiid.net.socket; import static org.junit.Assert.assertEquals; import java.io.FileInputStream; import java.io.ObjectInputStream; import org.junit.Test; import org.teiid.core.util.UnitTestUtil; @SuppressWarnings("nls") public class TestHandshake { @Test public void testCompatibility() throws Exception { ObjectInputStream ois = new ObjectInputStream(new FileInputStream(UnitTestUtil.getTestDataFile("handshake.ser"))); Handshake hs = (Handshake)ois.readObject(); assertEquals(AuthenticationType.USERPASSWORD, hs.getAuthType()); } @Test public void testVersionNormalization() throws Exception { Handshake hs = new Handshake("11.2.3.a"); assertEquals("11.02.03.a", hs.getVersion()); } }