forked from community/product-iots
parent
fa21f8cfd6
commit
1aadd2b171
@ -0,0 +1,157 @@
|
||||
/*
|
||||
* Copyright (c) 2017, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
|
||||
*
|
||||
* WSO2 Inc. licenses this file to you 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.wso2.iot.integration.samples;
|
||||
|
||||
import com.google.gson.JsonArray;
|
||||
import com.google.gson.JsonObject;
|
||||
import com.google.gson.JsonParser;
|
||||
import junit.framework.Assert;
|
||||
import org.apache.commons.httpclient.HttpStatus;
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.eclipse.paho.client.mqttv3.MqttClient;
|
||||
import org.eclipse.paho.client.mqttv3.MqttConnectOptions;
|
||||
import org.eclipse.paho.client.mqttv3.MqttMessage;
|
||||
import org.eclipse.paho.client.mqttv3.persist.MemoryPersistence;
|
||||
import org.testng.annotations.BeforeClass;
|
||||
import org.testng.annotations.Factory;
|
||||
import org.testng.annotations.Test;
|
||||
import org.wso2.carbon.automation.engine.context.TestUserMode;
|
||||
import org.wso2.carbon.automation.test.utils.http.client.HttpResponse;
|
||||
import org.wso2.iot.integration.common.Constants;
|
||||
import org.wso2.iot.integration.common.PayloadGenerator;
|
||||
import org.wso2.iot.integration.common.RestClient;
|
||||
import org.wso2.iot.integration.common.TestBase;
|
||||
|
||||
/**
|
||||
* This class tests the functionality of the virtual fire alarm.
|
||||
*/
|
||||
public class VirtualFireAlarmTestCase extends TestBase {
|
||||
private static Log log = LogFactory.getLog(VirtualFireAlarmTestCase.class);
|
||||
public static String deviceId1;
|
||||
public static String deviceId2;
|
||||
public static long currentTime;
|
||||
|
||||
@Factory(dataProvider = "userModeProvider")
|
||||
public VirtualFireAlarmTestCase(TestUserMode userMode) {
|
||||
this.userMode = userMode;
|
||||
}
|
||||
|
||||
@BeforeClass(alwaysRun = true)
|
||||
public void initTest() throws Exception {
|
||||
super.init(userMode);;
|
||||
RestClient client = new RestClient(backendHTTPSURL, Constants.APPLICATION_JSON, accessTokenString);
|
||||
if (userMode == TestUserMode.TENANT_ADMIN) {
|
||||
HttpResponse response = client
|
||||
.post(Constants.VirtualFireAlarmConstants.ANALYTICS_ARTIFACTS_DEPLOYMENT_ENDPOINT, "");
|
||||
Assert.assertEquals(HttpStatus.SC_CREATED, response.getResponseCode());
|
||||
// Time for deploying the carbon apps
|
||||
Thread.sleep(30000);
|
||||
}
|
||||
}
|
||||
|
||||
@Test(description = "This test case tests the virtual fire alarm enrollment")
|
||||
public void testEnrollment() throws Exception {
|
||||
RestClient client = new RestClient(backendHTTPSURL, Constants.APPLICATION_ZIP, accessTokenString);
|
||||
// Enroll an advanced agent and check whether that enrollment succeeds without issues.
|
||||
HttpResponse response = client.get(Constants.VirtualFireAlarmConstants.ENROLLMENT_ENDPOINT
|
||||
+ "?deviceName=advanced&sketchType=virtual_firealarm_advanced");
|
||||
Assert.assertEquals("Advance fire alarm advance agent enrollment failed", HttpStatus.SC_OK,
|
||||
response.getResponseCode());
|
||||
|
||||
// Enroll an simple agent and check whether that enrollment succeeds without issues.
|
||||
response = client.get(Constants.VirtualFireAlarmConstants.ENROLLMENT_ENDPOINT
|
||||
+ "?deviceName=simple&sketchType=virtual_firealarm");
|
||||
Assert.assertEquals("Advance fire alarm advance agent enrollment failed", HttpStatus.SC_OK,
|
||||
response.getResponseCode());
|
||||
|
||||
response = client.get(Constants.MobileDeviceManagement.GET_DEVICE_COUNT_ENDPOINT + "?type=virtual_firealarm");
|
||||
JsonArray jsonArray = new JsonParser().parse(response.getData()).getAsJsonObject().getAsJsonArray("devices");
|
||||
Assert.assertEquals("Virtual fire alarm enrollment failed ", 2, jsonArray.size());
|
||||
|
||||
deviceId1 = jsonArray.get(0).getAsJsonObject().getAsJsonPrimitive("deviceIdentifier").getAsString();
|
||||
deviceId2 = jsonArray.get(1).getAsJsonObject().getAsJsonPrimitive("deviceIdentifier").getAsString();
|
||||
}
|
||||
|
||||
@Test(description = "Test whether the publishing to a mqtt broker works fine without exceptions", dependsOnMethods =
|
||||
{"testEnrollment"} )
|
||||
public void testEventPublishing() throws Exception {
|
||||
String DEVICE_TYPE = "virtual_firealarm";
|
||||
|
||||
// Publishing message as a device with simple agent (device 1)
|
||||
String topic = automationContext.getContextTenant().getDomain() + "/" + DEVICE_TYPE + "/" + deviceId1 +
|
||||
"/temperature";
|
||||
int qos = 2;
|
||||
String broker = "tcp://localhost:1886";
|
||||
String clientId = deviceId1 + ":" + DEVICE_TYPE;
|
||||
MemoryPersistence persistence = new MemoryPersistence();
|
||||
MqttClient sampleClient = new MqttClient(broker, clientId, persistence);
|
||||
MqttConnectOptions connOpts = new MqttConnectOptions();
|
||||
connOpts.setUserName(accessToken);
|
||||
connOpts.setPassword("".toCharArray());
|
||||
connOpts.setKeepAliveInterval(120);
|
||||
connOpts.setCleanSession(true);
|
||||
log.info("Connecting to broker: " + broker);
|
||||
sampleClient.connect(connOpts);
|
||||
log.info("Connected");
|
||||
JsonObject fireAlarmPayload = PayloadGenerator.getJsonPayload(Constants.VirtualFireAlarmConstants
|
||||
.PAYLOAD_FILE, Constants.AndroidSenseEnrollment.PUBLISH_DATA_OPERATION);
|
||||
JsonObject eventPayload = fireAlarmPayload.getAsJsonObject("event");
|
||||
JsonObject metaDataPayload = eventPayload.getAsJsonObject("metaData");
|
||||
metaDataPayload.addProperty("deviceId", deviceId1);
|
||||
eventPayload.add("metaData", metaDataPayload);
|
||||
fireAlarmPayload.add("event", eventPayload);
|
||||
MqttMessage message = new MqttMessage(fireAlarmPayload.toString().getBytes());
|
||||
message.setQos(qos);
|
||||
sampleClient.publish(topic, message);
|
||||
log.info("Message is published to Mqtt Client");
|
||||
sampleClient.disconnect();
|
||||
log.info("Mqtt Client is Disconnected");
|
||||
|
||||
// Publishing message as a device with simple agent (device 2)
|
||||
topic = automationContext.getContextTenant().getDomain() + "/" + DEVICE_TYPE + "/" + deviceId2 +
|
||||
"/temperature";
|
||||
clientId = deviceId2 + ":" + DEVICE_TYPE;
|
||||
persistence = new MemoryPersistence();
|
||||
sampleClient = new MqttClient(broker, clientId, persistence);
|
||||
connOpts = new MqttConnectOptions();
|
||||
connOpts.setUserName(accessToken);
|
||||
connOpts.setPassword("".toCharArray());
|
||||
connOpts.setKeepAliveInterval(120);
|
||||
connOpts.setCleanSession(true);
|
||||
log.info("Connecting to broker: " + broker);
|
||||
sampleClient.connect(connOpts);
|
||||
log.info("Connected");
|
||||
|
||||
fireAlarmPayload = PayloadGenerator.getJsonPayload(Constants.VirtualFireAlarmConstants
|
||||
.PAYLOAD_FILE, Constants.AndroidSenseEnrollment.PUBLISH_DATA_OPERATION);
|
||||
eventPayload = fireAlarmPayload.getAsJsonObject("event");
|
||||
metaDataPayload = eventPayload.getAsJsonObject("metaData");
|
||||
metaDataPayload.addProperty("deviceId", deviceId2);
|
||||
eventPayload.add("metaData", metaDataPayload);
|
||||
fireAlarmPayload.add("event", eventPayload);
|
||||
message = new MqttMessage(fireAlarmPayload.toString().getBytes());
|
||||
message.setQos(qos);
|
||||
sampleClient.publish(topic, message);
|
||||
log.info("Message is published to Mqtt Client");
|
||||
sampleClient.disconnect();
|
||||
log.info("Mqtt Client is Disconnected");
|
||||
currentTime = System.currentTimeMillis();
|
||||
}
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
{
|
||||
"PUBLISH_DATA": {
|
||||
"event": {
|
||||
"metaData": {
|
||||
"owner": "admin",
|
||||
"deviceId": "AS101",
|
||||
"time": 1494315475
|
||||
},
|
||||
"payloadData": {
|
||||
"temperature": 30
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in new issue