forked from wildfly-extras/wildfly-camel
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[resolves wildfly-extras#2917] XChange cannot check API connection be…
…fore start
- Loading branch information
Showing
4 changed files
with
86 additions
and
21 deletions.
There are no files selected for viewing
54 changes: 54 additions & 0 deletions
54
...ne/basic/src/test/java/org/wildfly/camel/test/xchange/AbstractXChangeIntegrationTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
/* | ||
* #%L | ||
* Wildfly Camel :: Testsuite | ||
* %% | ||
* Copyright (C) 2013 - 2017 RedHat | ||
* %% | ||
* 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. | ||
* #L% | ||
*/ | ||
package org.wildfly.camel.test.xchange; | ||
|
||
import java.io.IOException; | ||
import java.net.ConnectException; | ||
import java.net.URL; | ||
import java.net.URLConnection; | ||
|
||
import org.apache.camel.CamelContext; | ||
import org.apache.camel.component.xchange.XChangeComponent; | ||
|
||
abstract class AbstractXChangeIntegrationTest { | ||
|
||
boolean checkAPIConnection() throws IOException { | ||
try { | ||
URL url = new URL("https://api.binance.com"); | ||
URLConnection con = url.openConnection(); | ||
con.connect(); | ||
return true; | ||
} catch (ConnectException ex) { | ||
// If the connection to the Binance API endpoint is refused we skip all further testing | ||
// e.g. Redhat Jenkins Env | ||
if (ex.getMessage().contains("Connection refused")) | ||
return false; | ||
else | ||
throw ex; | ||
} catch (IOException ex) { | ||
throw ex; | ||
} | ||
} | ||
|
||
boolean hasAPICredentials(CamelContext camelctx) { | ||
XChangeComponent component = camelctx.getComponent("xchange", XChangeComponent.class); | ||
return component.getXChange().getExchangeSpecification().getApiKey() != null; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters