This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository maven-debian-helper.
commit 93950e476011afd1d85768c02f063436e85f4ed1 Author: Emmanuel Bourg <[email protected]> Date: Mon Aug 26 09:40:19 2013 +0200 Added a test case for PackageScanner --- .../maven/packager/util/PackageScannerTest.java | 46 ++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/maven-packager-utils/src/test/java/org/debian/maven/packager/util/PackageScannerTest.java b/maven-packager-utils/src/test/java/org/debian/maven/packager/util/PackageScannerTest.java new file mode 100644 index 0000000..435cf26 --- /dev/null +++ b/maven-packager-utils/src/test/java/org/debian/maven/packager/util/PackageScannerTest.java @@ -0,0 +1,46 @@ +/* + * Copyright 2013 Emmanuel Bourg + * + * Licensed 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.debian.maven.packager.util; + +import java.io.File; + +import org.debian.maven.packager.DebianDependency; +import org.junit.Test; + +import static org.junit.Assert.*; + +public class PackageScannerTest { + + @Test + public void testFindExistingFile() throws Exception { + PackageScanner scanner = new PackageScanner(false); + + DebianDependency dependency = scanner.searchPkg(new File("/usr/share/java/ant.jar")); + + assertNotNull("Package not found", dependency); + assertEquals("Package", "ant", dependency.getPackageName()); + } + + @Test + public void testFindNonExistingFile() throws Exception { + PackageScanner scanner = new PackageScanner(false); + + DebianDependency dependency = scanner.searchPkg(new File("/usr/share/java/azertyuiop-123.jar")); + + assertNull("Package should be null", dependency); + } +} -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/maven-debian-helper.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

