Search in sources :

Example 11 with Metric

use of com.axibase.tsd.api.model.metric.Metric in project atsd-api-test by axibase.

the class MetricCommandTest method testInterpolate.

@Issue("3137")
@Test
public void testInterpolate() throws Exception {
    Metric metric = new Metric(metric());
    metric.setInterpolate(InterpolationMode.LINEAR);
    MetricCommand command = new MetricCommand(metric);
    CommandMethod.send(command);
    String assertMessage = String.format("Failed to insert metric with interpolate mode: %s", metric.getInterpolate());
    assertMetricExisting(assertMessage, metric);
}
Also used : MetricCommand(com.axibase.tsd.api.model.command.MetricCommand) Metric(com.axibase.tsd.api.model.metric.Metric) Issue(io.qameta.allure.Issue) Test(org.testng.annotations.Test)

Example 12 with Metric

use of com.axibase.tsd.api.model.metric.Metric in project atsd-api-test by axibase.

the class MetricCommandTest method testTags.

@Issue("3137")
@Test
public void testTags() throws Exception {
    Metric metric = new Metric(metric(), Mocks.TAGS);
    MetricCommand command = new MetricCommand(metric);
    CommandMethod.send(command);
    String assertMessage = String.format("Failed to insert metric with tags: %s", metric.getTags());
    assertMetricExisting(assertMessage, metric);
}
Also used : MetricCommand(com.axibase.tsd.api.model.command.MetricCommand) Metric(com.axibase.tsd.api.model.metric.Metric) Issue(io.qameta.allure.Issue) Test(org.testng.annotations.Test)

Example 13 with Metric

use of com.axibase.tsd.api.model.metric.Metric in project atsd-api-test by axibase.

the class MetricCommandTest method testEnabled.

@Issue("3550")
@Test
public void testEnabled() throws Exception {
    String metricName = metric();
    Metric metric = new Metric(metricName);
    MetricCommand command = new MetricCommand(metric);
    command.setEnabled(true);
    CommandMethod.send(command);
    Checker.check(new MetricCheck(metric));
    Metric actualMetric = MetricMethod.queryMetric(metricName).readEntity(Metric.class);
    assertTrue("Failed to set enabled", actualMetric.getEnabled());
}
Also used : MetricCheck(com.axibase.tsd.api.method.checks.MetricCheck) MetricCommand(com.axibase.tsd.api.model.command.MetricCommand) Metric(com.axibase.tsd.api.model.metric.Metric) Issue(io.qameta.allure.Issue) Test(org.testng.annotations.Test)

Example 14 with Metric

use of com.axibase.tsd.api.model.metric.Metric in project atsd-api-test by axibase.

the class MetricCommandTest method testDescription.

@Issue("3137")
@Test
public void testDescription() throws Exception {
    Metric metric = new Metric(metric());
    metric.setDescription(Mocks.DESCRIPTION);
    MetricCommand command = new MetricCommand(metric);
    CommandMethod.send(command);
    String assertMessage = String.format("Failed to insert metric with description: %s", metric.getDescription());
    assertMetricExisting(assertMessage, metric);
}
Also used : MetricCommand(com.axibase.tsd.api.model.command.MetricCommand) Metric(com.axibase.tsd.api.model.metric.Metric) Issue(io.qameta.allure.Issue) Test(org.testng.annotations.Test)

Example 15 with Metric

use of com.axibase.tsd.api.model.metric.Metric in project atsd-api-test by axibase.

the class MetricCommandTest method testNullEnabled.

@Issue("3550")
@Test
public void testNullEnabled() throws Exception {
    String metricName = metric();
    Metric metric = new Metric(metricName);
    MetricCommand command = new MetricCommand(metricName);
    command.setEnabled(null);
    CommandMethod.send(command);
    Checker.check(new MetricCheck(metric));
    Metric actualMetric = MetricMethod.queryMetric(metricName).readEntity(Metric.class);
    assertTrue("Failed to omit enabled", actualMetric.getEnabled());
}
Also used : MetricCheck(com.axibase.tsd.api.method.checks.MetricCheck) MetricCommand(com.axibase.tsd.api.model.command.MetricCommand) Metric(com.axibase.tsd.api.model.metric.Metric) Issue(io.qameta.allure.Issue) Test(org.testng.annotations.Test)

Aggregations

Metric (com.axibase.tsd.api.model.metric.Metric)76 Test (org.testng.annotations.Test)58 Issue (io.qameta.allure.Issue)50 Series (com.axibase.tsd.api.model.series.Series)25 Entity (com.axibase.tsd.api.model.entity.Entity)21 Response (javax.ws.rs.core.Response)16 BeforeClass (org.testng.annotations.BeforeClass)15 SeriesQuery (com.axibase.tsd.api.model.series.query.SeriesQuery)13 MetricCommand (com.axibase.tsd.api.model.command.MetricCommand)10 SqlTest (com.axibase.tsd.api.method.sql.SqlTest)7 BigDecimal (java.math.BigDecimal)7 MetricCheck (com.axibase.tsd.api.method.checks.MetricCheck)5 HashMap (java.util.HashMap)5 File (java.io.File)4 ArrayList (java.util.ArrayList)4 SeriesSearchResultRecord (com.axibase.tsd.api.model.series.search.SeriesSearchResultRecord)3 Period (com.axibase.tsd.api.model.Period)2 Sample (com.axibase.tsd.api.model.series.Sample)2 Aggregate (com.axibase.tsd.api.model.series.query.transformation.aggregate.Aggregate)2 SeriesSearchQuery (com.axibase.tsd.api.model.series.search.SeriesSearchQuery)2