-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Better indentation when adding GCP libraries to pom.xml #3511
base: master
Are you sure you want to change the base?
Changes from all commits
5d028af
5f56823
8194366
45c771d
38d59ea
741ded9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,139 @@ | ||
/* | ||
* Copyright 2019 Google LLC | ||
* | ||
* 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 com.google.cloud.tools.eclipse.appengine.libraries; | ||
|
||
import static org.junit.Assert.fail; | ||
|
||
import com.google.cloud.tools.eclipse.appengine.libraries.model.Library; | ||
import com.google.cloud.tools.eclipse.appengine.libraries.model.LibraryFile; | ||
import com.google.cloud.tools.eclipse.test.util.project.TestProjectCreator; | ||
import com.google.cloud.tools.eclipse.util.ArtifactRetriever; | ||
import java.io.File; | ||
import java.io.IOException; | ||
import java.io.InputStream; | ||
import java.net.URL; | ||
import java.nio.charset.Charset; | ||
import java.nio.file.Files; | ||
import java.nio.file.Paths; | ||
import java.util.ArrayList; | ||
import java.util.Arrays; | ||
import java.util.List; | ||
import java.util.logging.Level; | ||
import java.util.logging.Logger; | ||
import org.eclipse.core.resources.IFile; | ||
import org.eclipse.core.resources.IProject; | ||
import org.eclipse.core.runtime.CoreException; | ||
import org.eclipse.core.runtime.FileLocator; | ||
import org.eclipse.core.runtime.Platform; | ||
import org.junit.After; | ||
import org.junit.Before; | ||
import org.junit.Rule; | ||
import org.junit.Test; | ||
import org.osgi.framework.Bundle; | ||
import org.xml.sax.SAXException; | ||
|
||
public class PomFormatTest { | ||
|
||
@Rule | ||
public final TestProjectCreator projectCreator = new TestProjectCreator(); | ||
private Pom pom; | ||
private IFile pomFile; | ||
|
||
@Before | ||
public void setUp() throws SAXException, IOException, CoreException { | ||
IProject project = projectCreator.getProject(); | ||
pomFile = project.getFile("pom.xml"); | ||
try (InputStream in = | ||
Files.newInputStream(Paths.get("testdata/testPomEmpty.xml").toAbsolutePath())) { | ||
pomFile.create(in, IFile.FORCE, null); | ||
pom = Pom.parse(pomFile); | ||
} | ||
|
||
Logger logger = Logger.getLogger(ArtifactRetriever.class.getName()); | ||
logger.setLevel(Level.OFF); | ||
} | ||
|
||
@After | ||
public void tearDown() { | ||
Logger logger = Logger.getLogger(ArtifactRetriever.class.getName()); | ||
logger.setLevel(null); | ||
} | ||
|
||
@Test | ||
public void testAddDependencies() throws Exception { | ||
Library library0 = PomTest.newLibrary("id0", | ||
new LibraryFile(PomTest.coordinates("com.example.group0", "artifact0", "1.2.3"))); | ||
Library library1 = PomTest.newLibrary("id1", | ||
new LibraryFile(PomTest.coordinates("com.example.group1", "artifact1"))); | ||
Library library2 = PomTest.newLibrary("id2", | ||
new LibraryFile(PomTest.coordinates("com.example.group2", "artifact2")), | ||
new LibraryFile(PomTest.coordinates("com.example.group3", "artifact3"))); | ||
|
||
List<Library> libraries = Arrays.asList(library0, library1, library2); | ||
pom.addDependencies(libraries); | ||
|
||
Bundle bundle = Platform.getBundle("com.google.cloud.tools.eclipse.appengine.libraries.test"); | ||
URL fileUrl = bundle.getEntry("/testdata/formatAdd.xml"); | ||
File expected = new File(FileLocator.resolve(fileUrl).toURI()); | ||
assertFileContentsEqual(expected, pomFile.getLocation().toFile()); | ||
} | ||
|
||
@Test | ||
public void testRemoveUnusedDependencies() throws Exception { | ||
LibraryFile file1 = new LibraryFile(PomTest.coordinates("com.example.group1", "artifact1")); | ||
LibraryFile file2 = new LibraryFile(PomTest.coordinates("com.example.group2", "artifact2")); | ||
Library library1 = PomTest.newLibrary("id1", file1); | ||
Library library2 = PomTest.newLibrary("id2", file1, file2); | ||
|
||
pom.addDependencies(Arrays.asList(library1, library2)); | ||
|
||
Bundle bundle = Platform.getBundle("com.google.cloud.tools.eclipse.appengine.libraries.test"); | ||
URL fileUrl = bundle.getEntry("/testdata/formatRemove.xml"); | ||
File expected = new File(FileLocator.resolve(fileUrl).toURI()); | ||
assertFileContentsEqual(expected, pomFile.getLocation().toFile()); | ||
} | ||
|
||
private static void assertFileContentsEqual(File expected, File actual) throws IOException { | ||
final List<String> expectedLines = | ||
Files.readAllLines(expected.toPath(), Charset.forName("UTF-8")); | ||
final List<String> actualLines = Files.readAllLines(actual.toPath(), Charset.forName("UTF-8")); | ||
|
||
if (expectedLines == null || expectedLines.size() == 0) { | ||
fail("Expected file shouldn't be empty"); | ||
return; | ||
} | ||
if (expectedLines.size() != actualLines.size()) { | ||
fail("Line sizes are differed, expected.length=" + expectedLines.size() + " actual.length=" | ||
+ actualLines.size()); | ||
return; | ||
} | ||
|
||
final List<String> diff = new ArrayList<>(); | ||
for (final String line : expectedLines) { | ||
if (!actualLines.contains(line)) { | ||
diff.add(("Line Number : " + expectedLines.indexOf(line) + 1) + " " + line + "\n"); | ||
} | ||
} | ||
if (diff.size() > 0) { | ||
String message = "The differences are:\n"; | ||
for (String line : diff) { | ||
message = message.concat(line); | ||
} | ||
fail(message); | ||
} | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.google.cloud</groupId> | ||
<artifactId>google-cloud-bom</artifactId> | ||
<type>pom</type> | ||
<scope>import</scope> | ||
<version>0.99.0-alpha</version> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.example.group0</groupId> | ||
<artifactId>artifact0</artifactId> | ||
<version>1.2.3</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.example.group1</groupId> | ||
<artifactId>artifact1</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.example.group2</groupId> | ||
<artifactId>artifact2</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.example.group3</groupId> | ||
<artifactId>artifact3</artifactId> | ||
</dependency> | ||
</dependencies> | ||
</project> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.google.cloud</groupId> | ||
<artifactId>google-cloud-bom</artifactId> | ||
<type>pom</type> | ||
<scope>import</scope> | ||
<version>0.99.0-alpha</version> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.example.group1</groupId> | ||
<artifactId>artifact1</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.example.group2</groupId> | ||
<artifactId>artifact2</artifactId> | ||
</dependency> | ||
</dependencies> | ||
</project> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" | ||
xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
</project> |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -234,7 +234,7 @@ void updateDependencies(Collection<Library> selectedLibraries, | |
dependency.appendChild(artifactIdElement); | ||
|
||
if (testComment == null) { | ||
dependencies.appendChild(dependency); | ||
addChild(dependencies, dependency); | ||
} else { | ||
dependencies.insertBefore(dependency, testComment); | ||
} | ||
|
@@ -279,7 +279,7 @@ private void handleDependencyManaged(LibraryFile artifact, Element dependency) { | |
} | ||
} else { | ||
if (versionNode != null) { | ||
dependency.removeChild(versionNode); | ||
removeChild(dependency, versionNode); | ||
} | ||
} | ||
} | ||
|
@@ -305,8 +305,8 @@ private void createBOMIfNeeded(XPath xpath) throws CoreException { | |
dependencyManagement = document.createElementNS("http://maven.apache.org/POM/4.0.0", | ||
"dependencyManagement"); | ||
} | ||
dependencyManagement.appendChild(dependencies); | ||
document.getDocumentElement().appendChild(dependencyManagement); | ||
addChild(dependencyManagement, dependencies); | ||
addChild(document.getDocumentElement(), dependencyManagement); | ||
} | ||
|
||
Element dependency = | ||
|
@@ -321,7 +321,7 @@ private void createBOMIfNeeded(XPath xpath) throws CoreException { | |
if (bom != null) { | ||
boms.add(bom); | ||
} | ||
dependencies.appendChild(dependency); | ||
addChild(dependencies, dependency); | ||
} | ||
} catch (XPathExpressionException ex) { | ||
IStatus status = StatusUtil.error(Pom.class, ex.getMessage(), ex); | ||
|
@@ -444,7 +444,7 @@ static void removeUnusedDependencies(Element dependencies, | |
} | ||
|
||
for (Node node : nodesToRemove) { | ||
dependencies.removeChild(node); | ||
removeChild(dependencies, node); | ||
} | ||
} | ||
|
||
|
@@ -482,10 +482,29 @@ private static String getValue(Element dependency, String childName) { | |
private void writeDocument() throws CoreException, TransformerException { | ||
Transformer transformer = transformerFactory.newTransformer(); | ||
transformer.setOutputProperty(OutputKeys.INDENT, "yes"); | ||
transformer.setOutputProperty("{http://xml.apache.org/xslt}indent-amount","2"); //$NON-NLS-1$ //$NON-NLS-2$ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is the core fix. Other changes are for removing extra spaces and blank line when add or removing libaries. |
||
ByteArrayOutputStream out = new ByteArrayOutputStream(); | ||
transformer.transform(new DOMSource(document), new StreamResult(out)); | ||
InputStream in = new ByteArrayInputStream(out.toByteArray()); | ||
|
||
pomFile.setContents(in, true, true, null); | ||
} | ||
|
||
private void addChild(Node parent, Node newChild) { | ||
parent.appendChild(newChild); | ||
removeWhiteSpaceBefore(newChild);// for child indentation | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: space before // |
||
} | ||
|
||
private static void removeChild(Node parent, Node oldChild) { | ||
removeWhiteSpaceBefore(oldChild); | ||
parent.removeChild(oldChild); | ||
} | ||
|
||
private static void removeWhiteSpaceBefore(Node node) { | ||
Node prevElement = node.getPreviousSibling(); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. previousElement |
||
if (prevElement != null && prevElement.getNodeType() == Node.TEXT_NODE | ||
&& prevElement.getNodeValue().trim().length() == 0) { | ||
node.getParentNode().removeChild(prevElement); | ||
} | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Google style avoids final on local variables where not required.