Skip to content

Commit

Permalink
Test and Client fixes (#385)
Browse files Browse the repository at this point in the history
* Resolving Issue #384 - Incorrect Log message
* Issue #384 - Mapping correct Logcat Message
* Updating Test Properties to point at local broker
* Issue #383 - Delete MqttDefaultFilePersistence directory on clear()
* Issue #356 - Fixed issue where hostnames containing underscores would not be parsed correctly by Java
* Adding Coveralls integration
* Issue #353 - Adding missing EDL reference to copyright statements
* Updating Java Version for Mqtt V3 client eclipse project

Signed-off-by: James Sutton <[email protected]>
  • Loading branch information
jpwsutton authored Jul 25, 2017
1 parent fe8be8e commit 54f110d
Show file tree
Hide file tree
Showing 12 changed files with 820 additions and 537 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
/*
/*******************************************************************************
* Copyright (c) 2012 Eurotech Inc. All rights reserved.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
* and Eclipse Distribution License v1.0 which accompany this distribution.
*
* The Eclipse Public License is available at
* http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Chad Kienle
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
/*
/*******************************************************************************
* Copyright (c) 2012 Eurotech Inc. All rights reserved.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
* and Eclipse Distribution License v1.0 which accompany this distribution.
*
* The Eclipse Public License is available at
* http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Chad Kienle
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
/*
/*******************************************************************************
* Copyright (c) 2012 Eurotech Inc. All rights reserved.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
* and Eclipse Distribution License v1.0 which accompany this distribution.
*
* The Eclipse Public License is available at
* http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Chad Kienle
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
/*******************************************************************************
* Copyright (c) 2017 Red Hat Inc.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
* and Eclipse Distribution License v1.0 which accompany this distribution.
*
* The Eclipse Public License is available at
* http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Red Hat Inc - initial API and implementation
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
/**
* Copyright (c) 2011, 2014 Eurotech and/or its affiliates
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Eclipse Distribution License v1.0 which accompany this distribution.
*
* The Eclipse Public License is available at
* http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Cristiano De Alti - Eurotech (Initial contribution)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# This is the server URI which will be set in the constructor of an MQTT Client
# The default is "tcp://<localhost>:1883" with <localhost> expressed in IPV4 dotted decimal notation
SERVER_URI=tcp://iot.eclipse.org:1883
SERVER_URI=tcp://localhost:1883
CLIENT_KEY_STORE=clientkeystore.jks
CLIENT_KEY_STORE_PASSWORD=password
CLIENT_TRUST_STORE=clientkeystore.jks
SERVER_SSL_PORT=18884
SERVER_WEBSOCKET_URI=wss://iot.eclipse.org:443
SERVER_SSL_PORT=8883
SERVER_WEBSOCKET_URI=ws://localhost:8080


# The list of server URIs which may be set in the MQTT ConnectOptions for an HA testcase.
# There is no default value
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.2
org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=1.4
org.eclipse.jdt.core.compiler.compliance=1.7
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=warning
org.eclipse.jdt.core.compiler.problem.enumIdentifier=warning
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
org.eclipse.jdt.core.compiler.source=1.3
org.eclipse.jdt.core.compiler.source=1.7
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
/*
/**************************************************************************
* Copyright (c) 2009, 2012 IBM Corp.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
* and Eclipse Distribution License v1.0 which accompany this distribution.
*
* The Eclipse Public License is available at
* http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Dave Locke - initial API and implementation and/or initial documentation
Expand Down
Loading

0 comments on commit 54f110d

Please sign in to comment.