-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added tests for creating, deleting and editing tags, and assigning tags to devices. Signed-off-by: zanpizmoht <zan.pizmoht@comtrade.com>
- Loading branch information
1 parent
959bee4
commit 215637c
Showing
7 changed files
with
1,172 additions
and
88 deletions.
There are no files selected for viewing
35 changes: 35 additions & 0 deletions
35
...gration/src/test/java/org/eclipse/kapua/integration/service/tag/RunTagServiceI9nTest.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,35 @@ | ||
/******************************************************************************* | ||
* Copyright (c) 2020 Eurotech and/or its affiliates and others | ||
* | ||
* 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 | ||
* | ||
* Contributors: | ||
* Eurotech - initial API and implementation | ||
*******************************************************************************/ | ||
package org.eclipse.kapua.integration.service.tag; | ||
|
||
import cucumber.api.CucumberOptions; | ||
import org.eclipse.kapua.qa.common.cucumber.CucumberWithProperties; | ||
import org.junit.runner.RunWith; | ||
|
||
@RunWith(CucumberWithProperties.class) | ||
@CucumberOptions( | ||
features = { "classpath:features/tag/TagService.feature" | ||
}, | ||
glue = {"org.eclipse.kapua.service.tag.steps", | ||
"org.eclipse.kapua.service.user.steps", | ||
"org.eclipse.kapua.service.device.registry.steps", | ||
"org.eclipse.kapua.service.account.steps", | ||
"org.eclipse.kapua.qa.common" | ||
}, | ||
plugin = { "pretty", | ||
"html:target/cucumber", | ||
"json:target/cucumber.json" }, | ||
strict = true, | ||
monochrome = true) | ||
|
||
public class RunTagServiceI9nTest { | ||
} |
854 changes: 822 additions & 32 deletions
854
qa/integration/src/test/resources/features/tag/TagService.feature
Large diffs are not rendered by default.
Oops, something went wrong.
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
Oops, something went wrong.