blob: 0c64dd5a5c34c3695812f19f84c9b29902bb5f7f [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.openjpa.lib.util.git;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import junit.textui.TestRunner;
public class TestGitUtils extends TestCase {
public TestGitUtils(String s) {
super(s);
}
public void testNull() {
assertEquals(-1, GitUtils.convertGitInfoToPCEnhancerVersion(null));
}
public void testBasic() {
long i = 0xBC614E;
assertEquals(i, GitUtils.convertGitInfoToPCEnhancerVersion("BC614E"));
}
public void testBasic2() {
int i = 0xfef543b;
assertEquals(i, GitUtils.convertGitInfoToPCEnhancerVersion("fef543b"));
}
public void testGoodTrailingString() {
long i = 0xBC614E;
assertEquals(i, GitUtils.convertGitInfoToPCEnhancerVersion("BC614Em"));
assertEquals(i, GitUtils.convertGitInfoToPCEnhancerVersion("BC614EM"));
}
public void testBad() {
long i = 0xBC614E;
assertEquals(-1, GitUtils.convertGitInfoToPCEnhancerVersion(i + "BC614Ems"));
assertEquals(-1, GitUtils.convertGitInfoToPCEnhancerVersion("ZC614EM"));
assertEquals(-1, GitUtils.convertGitInfoToPCEnhancerVersion("ZC614E"));
}
public static Test suite() {
return new TestSuite(TestGitUtils.class);
}
public static void main(String[] args) {
TestRunner.run(suite());
}
}