* Add test cases.

* Add travis.
This commit is contained in:
Yaohai Zheng 2018-05-05 16:01:59 +08:00 коммит произвёл GitHub
Родитель 8899f3a971
Коммит 4ee7ddd54d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
33 изменённых файлов: 469 добавлений и 5 удалений

28
.travis.yml Normal file
Просмотреть файл

@ -0,0 +1,28 @@
language: node_js
node_js:
- '--lts'
os:
- linux
- osx
before_install:
- if [ $TRAVIS_OS_NAME == "linux" ]; then
export CXX="g++-4.9" CC="gcc-4.9" DISPLAY=:99.0;
sh -e /etc/init.d/xvfb start;
sleep 3;
fi
- cd extension
install:
- npm install -g vsce
- npm install -g typescript
- npm install -g gulp
- npm install
script:
- gulp tslint
- gulp build_server
- vsce package
- npm test --silent

Просмотреть файл

@ -1,11 +1,21 @@
# Java Dependency Viewer
[![Travis CI](https://travis-ci.org/Microsoft/vscode-java-explorer.svg?branch=master)](https://travis-ci.org/Microsoft/vscode-java-explorer)
## Features
* Dependency viewer
![viewer](https://raw.githubusercontent.com/yaohaizh/java-copilot/master/vscode/images/Dependency.gif)
### Contribution
* Create Java Project
## Requirements
- JDK (version 1.8.0 or later)
- VS Code (version 1.22.0 or later)
- [Language Support for Java by Red Hat](https://marketplace.visualstudio.com/items?itemName=redhat.java) (version 0.14.0 or later)
## Contribution
### Build
* Prerequirement
- Node.js
@ -21,7 +31,3 @@ gulp build_server
```
### Debug
## Release Note

7
test/gradle/.classpath Normal file
Просмотреть файл

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src/main/java"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8/"/>
<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
<classpathentry kind="output" path="bin"/>
</classpath>

Двоичные данные
test/gradle/.gradle/4.3/fileChanges/last-build.bin Normal file

Двоичный файл не отображается.

Двоичные данные
test/gradle/.gradle/4.3/fileHashes/fileHashes.bin Normal file

Двоичный файл не отображается.

Двоичные данные
test/gradle/.gradle/4.3/fileHashes/fileHashes.lock Normal file

Двоичный файл не отображается.

23
test/gradle/.project Normal file
Просмотреть файл

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>gradle</name>
<comment>Project gradle created by Buildship.</comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.buildship.core.gradleprojectbuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
</natures>
</projectDescription>

Просмотреть файл

@ -0,0 +1,2 @@
#Fri May 04 15:36:55 CST 2018
connection.project.dir=

29
test/gradle/.vscode/launch.json поставляемый Normal file
Просмотреть файл

@ -0,0 +1,29 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Java Debug",
"request": "launch",
"cwd": "${workspaceRoot}",
"stopOnEntry": true,
"mainClass": "GradleTest",
"sourcePaths": [
"${workspaceRoot}/src/main/java"
],
"options": []
},
{
"type": "java",
"name": "Java Debug (Attach)",
"request": "attach",
"hostName": "localhost",
"port": 0,
"attachTimeout": 30000,
"cwd": "${workspaceRoot}",
"sourcePaths": [
"${workspaceRoot}"
]
}
]
}

6
test/gradle/build.gradle Normal file
Просмотреть файл

@ -0,0 +1,6 @@
apply plugin: 'java'
sourceSets {
main.java.srcDirs = ['src/main/java']
}

Просмотреть файл

@ -0,0 +1,5 @@
public class GradleTest {
public static void main(String[] args) {
System.out.println("This is a sample gradle project");
}
}

39
test/java9/pom.xml Normal file
Просмотреть файл

@ -0,0 +1,39 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.microsoft.app</groupId>
<artifactId>java9-app</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>java9-app</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.7</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>9</source>
<target>9</target>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
</plugins>
</build>
</project>

Просмотреть файл

@ -0,0 +1,22 @@
package com.microsoft.app;
import com.google.gson.Gson;
public class App
{
public static void main( String[] args )
{
Gson GSON = new Gson();
String name = "jinbwan";
Employee employee = GSON.fromJson("{\"name\": \"" + name + "\"}", Employee.class);
System.out.println(employee.getName());
}
static class Employee {
public String name;
public String getName() {
return this.name;
}
}
}

Просмотреть файл

@ -0,0 +1,11 @@
package com.microsoft.app;
import java.nio.file.Paths;
public class Launcher {
public static void main(String[] args) {
System.out.println(Paths.get(".").toAbsolutePath().toString());
System.out.println(System.getenv("Path"));
}
}

Просмотреть файл

@ -0,0 +1,6 @@
module com.microsoft.app.mymodule {
requires gson;
requires java.base;
requires java.sql;
opens com.microsoft.app;
}

Просмотреть файл

@ -0,0 +1,38 @@
package com.microsoft.app;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
/**
* Unit test for simple App.
*/
public class AppTest
extends TestCase
{
/**
* Create the test case
*
* @param testName name of the test case
*/
public AppTest( String testName )
{
super( testName );
}
/**
* @return the suite of tests being tested
*/
public static Test suite()
{
return new TestSuite( AppTest.class );
}
/**
* Rigourous Test :-)
*/
public void testApp()
{
assertTrue( true );
}
}

27
test/maven/.classpath Normal file
Просмотреть файл

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" output="target/classes" path="src/main/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="target/classes"/>
</classpath>

23
test/maven/.project Normal file
Просмотреть файл

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>my-app</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
</natures>
</projectDescription>

Просмотреть файл

@ -0,0 +1,5 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
org.eclipse.jdt.core.compiler.compliance=1.5
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
org.eclipse.jdt.core.compiler.source=1.5

Просмотреть файл

@ -0,0 +1,4 @@
activeProfiles=
eclipse.preferences.version=1
resolveWorkspaceProjects=true
version=1

26
test/maven/.vscode/launch.json поставляемый Normal file
Просмотреть файл

@ -0,0 +1,26 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Debug (Launch)",
"request": "launch",
"mainClass": "com.mycompany.app.App",
"args": "",
"sourcePaths": [
"${workspaceRoot}/src/main/java"
]
},
{
"type": "java",
"name": "Debug (Attach)",
"request": "attach",
"hostName": "localhost",
"port": 0,
"timeout": 30000,
"sourcePaths": [
"${workspaceRoot}"
]
}
]
}

18
test/maven/pom.xml Normal file
Просмотреть файл

@ -0,0 +1,18 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.mycompany.app</groupId>
<artifactId>my-app</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>my-app</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>

Просмотреть файл

@ -0,0 +1,13 @@
package com.mycompany.app;
/**
* Hello world!
*
*/
public class App
{
public static void main( String[] args )
{
System.out.println( "Hello World!" );
}
}

Просмотреть файл

@ -0,0 +1,38 @@
package com.mycompany.app;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
/**
* Unit test for simple App.
*/
public class AppTest
extends TestCase
{
/**
* Create the test case
*
* @param testName name of the test case
*/
public AppTest( String testName )
{
super( testName );
}
/**
* @return the suite of tests being tested
*/
public static Test suite()
{
return new TestSuite( AppTest.class );
}
/**
* Rigourous Test :-)
*/
public void testApp()
{
assertTrue( true );
}
}

Просмотреть файл

@ -0,0 +1,14 @@
{
"folders": [
{
"path": "..\\simple"
},
{
"path": "..\\maven"
},
{
"path": "..\\gradle"
}
],
"settings": {}
}

6
test/simple/.classpath Normal file
Просмотреть файл

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src/main/java"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8/"/>
<classpathentry kind="output" path="bin"/>
</classpath>

17
test/simple/.project Normal file
Просмотреть файл

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>1.helloworld</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>

29
test/simple/.vscode/launch.json поставляемый Normal file
Просмотреть файл

@ -0,0 +1,29 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Java Debug",
"request": "launch",
"cwd": "${workspaceRoot}",
"stopOnEntry": true,
"mainClass": "HelloWorld",
"sourcePaths": [
"${workspaceRoot}/src/main/java"
],
"options": []
},
{
"type": "java",
"name": "Java Debug (Attach)",
"request": "attach",
"hostName": "localhost",
"port": 0,
"attachTimeout": 30000,
"cwd": "${workspaceRoot}",
"sourcePaths": [
"${workspaceRoot}"
]
}
]
}

Просмотреть файл

@ -0,0 +1,13 @@
public class HelloWorld {
public static void main(String[] args) {
System.out.print("hello");
if (args != null && args.length > 0) {
for (String arg : args) {
System.out.print(" " + arg);
}
System.out.println();
} else {
System.out.println(" world");
}
}
}

Просмотреть файл

@ -0,0 +1,3 @@
{
"CurrentProjectSetting": null
}

Просмотреть файл

@ -0,0 +1,6 @@
{
"ExpandedNodes": [
""
],
"PreviewInSolutionExplorer": false
}

Двоичные данные
vscode/.vs/slnx.sqlite Normal file

Двоичный файл не отображается.

Двоичные данные
vscode/.vs/vscode/v15/.suo Normal file

Двоичный файл не отображается.