ui_chart_unit_test.cpp 14.0 KB
Newer Older
M
mamingshuai 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
/*
 * Copyright (c) 2020-2021 Huawei Device Co., Ltd.
 * 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.
 */

#include "components/ui_chart.h"
#include <climits>
#include <gtest/gtest.h>

using namespace testing::ext;

namespace OHOS {
namespace {
    const uint16_t ARRAY_SIZE = 5;
    const uint16_t RADIUS = 5;
    const uint16_t WIDTH = 10;
    const Point POINT_ARRAY[ARRAY_SIZE] = { {0, 2478}, {1, 2600}, {2, 3000}, {3, 3200}, {4, 3500} };
}

class UIChartDataSerialTest : public testing::Test {
public:
    UIChartDataSerialTest() : chartDataSerial_(nullptr), chart_(nullptr) {}
    ~UIChartDataSerialTest() {}
    static void SetUpTestCase(void) {}
    static void TearDownTestCase(void) {}
    void SetUp(void);
    void TearDowm(void);
    UIChartDataSerial* chartDataSerial_;
    UIChartPillar* chart_;
};

void UIChartDataSerialTest::SetUp(void)
{
    if (chartDataSerial_ == nullptr) {
        chartDataSerial_ = new UIChartDataSerial();
        chartDataSerial_->SetMaxDataCount(ARRAY_SIZE);
    }
    if (chart_ == nullptr) {
        chart_ = new UIChartPillar();
    }
}

void UIChartDataSerialTest::TearDowm(void)
{
    if (chartDataSerial_ != nullptr) {
        delete chartDataSerial_;
        chartDataSerial_ = nullptr;
    }
    if (chart_ != nullptr) {
        delete chart_;
        chart_ = nullptr;
    }
}

void InitPointStyle(UIChartDataSerial::PointStyle& pointStyle)
{
    pointStyle.fillColor = Color::Red();
    pointStyle.radius = RADIUS;
    pointStyle.strokeColor = Color::White();
    pointStyle.strokeWidth = WIDTH;
}

/**
 * @tc.name: UIChartDataSerialSetMaxDataCount_001
 * @tc.desc: Verify SetMaxDataCount function, equal.
 * @tc.type: FUNC
 * @tc.require: AR000EEMQ8
 */
邓志豪 已提交
79
HWTEST_F(UIChartDataSerialTest, UIChartDataSerialSetMaxDataCount_001, TestSize.Level1)
M
mamingshuai 已提交
80 81 82 83 84 85 86 87 88 89 90 91 92 93
{
    if (chartDataSerial_ == nullptr) {
        EXPECT_EQ(1, 0);
        return;
    }
    EXPECT_EQ(chartDataSerial_->SetMaxDataCount(1), true);
}

/**
 * @tc.name: UIChartDataSerialAddPoints_001
 * @tc.desc: Verify AddPoints function, equal.
 * @tc.type: FUNC
 * @tc.require: AR000EEMQ8
 */
邓志豪 已提交
94
HWTEST_F(UIChartDataSerialTest, UIChartDataSerialAddPoints_001, TestSize.Level1)
M
mamingshuai 已提交
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
{
    if (chartDataSerial_ == nullptr) {
        EXPECT_EQ(1, 0);
        return;
    }
    bool ret = chartDataSerial_->AddPoints(nullptr, 0);
    EXPECT_EQ(ret, false);
    ret = chartDataSerial_->AddPoints(POINT_ARRAY, ARRAY_SIZE);
    EXPECT_EQ(ret, true);
    ret = chartDataSerial_->AddPoints(POINT_ARRAY, 0);
    EXPECT_EQ(ret, false);
}

/**
 * @tc.name: UIChartDataSerialGetPoint_001
 * @tc.desc: Verify GetPoint function, equal.
 * @tc.type: FUNC
 * @tc.require: AR000EEMQ8
 */
HWTEST_F(UIChartDataSerialTest, UIChartDataSerialGetPoint_001, TestSize.Level1)
{
    if (chartDataSerial_ == nullptr) {
        EXPECT_EQ(1, 0);
        return;
    }
    Point point;

    bool ret = chartDataSerial_->AddPoints(POINT_ARRAY, ARRAY_SIZE);
    EXPECT_EQ(ret, true);
    ret = chartDataSerial_->GetPoint(1, point);
    EXPECT_EQ(ret, true);
    EXPECT_EQ(point.x, POINT_ARRAY[1].x);
    EXPECT_EQ(point.y, POINT_ARRAY[1].y);
}

/**
 * @tc.name: UIChartDataSerialModifyPoint_001
 * @tc.desc: Verify ModifyPoint function, equal.
 * @tc.type: FUNC
 * @tc.require: AR000EEMQ8
 */
HWTEST_F(UIChartDataSerialTest, UIChartDataSerialModifyPoint_001, TestSize.Level0)
{
    if (chartDataSerial_ == nullptr) {
        EXPECT_EQ(1, 0);
        return;
    }
    Point point = { 1, 200 }; // 200 : y posetion
    Point point1;

    bool ret = chartDataSerial_->AddPoints(POINT_ARRAY, ARRAY_SIZE);
    EXPECT_EQ(ret, true);
    ret = chartDataSerial_->ModifyPoint(ARRAY_SIZE + 1, point);
    EXPECT_EQ(ret, false);
    ret = chartDataSerial_->ModifyPoint(1, point);
    EXPECT_EQ(ret, true);
    ret = chartDataSerial_->GetPoint(1, point1);
    EXPECT_EQ(ret, true);
    EXPECT_EQ(point1.x, point.x);
    EXPECT_EQ(point1.y, point.y);
}

/**
 * @tc.name: UIChartDataSerialClearData_001
 * @tc.desc: Verify ClearData function, equal.
 * @tc.type: FUNC
 * @tc.require: AR000EEMQ8
 */
邓志豪 已提交
163
HWTEST_F(UIChartDataSerialTest, UIChartDataSerialClearData_001, TestSize.Level1)
M
mamingshuai 已提交
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
{
    if (chartDataSerial_ == nullptr) {
        EXPECT_EQ(1, 0);
        return;
    }
    Point point;

    bool ret = chartDataSerial_->AddPoints(POINT_ARRAY, ARRAY_SIZE);
    EXPECT_EQ(ret, true);
    chartDataSerial_->ClearData();
    ret = chartDataSerial_->GetPoint(1, point);
    EXPECT_EQ(ret, false);
}

/**
 * @tc.name: UIChartDataSerialGetDataCount_001
 * @tc.desc: Verify GetDataCount function, equal.
 * @tc.type: FUNC
 * @tc.require: AR000EEMQ8
 */
邓志豪 已提交
184
HWTEST_F(UIChartDataSerialTest, UIChartDataSerialGetDataCount_001, TestSize.Level1)
M
mamingshuai 已提交
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
{
    if (chartDataSerial_ == nullptr) {
        EXPECT_EQ(1, 0);
        return;
    }
    bool ret = chartDataSerial_->AddPoints(POINT_ARRAY, ARRAY_SIZE);
    EXPECT_EQ(ret, true);
    uint16_t count = chartDataSerial_->GetDataCount();
    EXPECT_EQ(count, ARRAY_SIZE);
    chartDataSerial_->ClearData();
    count = chartDataSerial_->GetDataCount();
    EXPECT_EQ(count, 0);
}

/**
 * @tc.name: UIChartDataSerialEnableGradient_001
 * @tc.desc: Verify EnableGradient function, equal.
 * @tc.type: FUNC
 * @tc.require: AR000EEMQ8
 */
HWTEST_F(UIChartDataSerialTest, UIChartDataSerialEnableGradient_001, TestSize.Level1)
{
    if (chartDataSerial_ == nullptr) {
        EXPECT_EQ(1, 0);
        return;
    }
    chartDataSerial_->EnableGradient(true);
    EXPECT_EQ(chartDataSerial_->IsGradient(), true);
}

/**
 * @tc.name: UIChartDataSerialEnableSmooth_001
 * @tc.desc: Verify EnableSmooth function, equal.
 * @tc.type: FUNC
 * @tc.require: AR000EEMQ8
 */
HWTEST_F(UIChartDataSerialTest, UIChartDataSerialEnableSmooth_001, TestSize.Level1)
{
    if (chartDataSerial_ == nullptr) {
        EXPECT_EQ(1, 0);
        return;
    }
    chartDataSerial_->EnableSmooth(true);
    bool ret = chartDataSerial_->IsSmooth();
    EXPECT_EQ(ret, true);
}

/**
 * @tc.name: UIChartDataSerialGetPeakIndex_001
 * @tc.desc: Verify GetPeakIndex function, equal.
 * @tc.type: FUNC
 * @tc.require: AR000EEMQ8
 */
HWTEST_F(UIChartDataSerialTest, UIChartDataSerialGetPeakIndex_001, TestSize.Level1)
{
    if (chartDataSerial_ == nullptr) {
        EXPECT_EQ(1, 0);
        return;
    }
    bool ret = chartDataSerial_->AddPoints(POINT_ARRAY, ARRAY_SIZE);
    EXPECT_EQ(ret, true);
    uint16_t index = chartDataSerial_->GetPeakIndex();
    EXPECT_EQ(index, 4);
    int16_t value = chartDataSerial_->GetPeakData();
    EXPECT_EQ(value, 3500);
}

/**
 * @tc.name: UIChartDataSerialGetValleyIndex_001
 * @tc.desc: Verify GetValleyIndex function, equal.
 * @tc.type: FUNC
 * @tc.require: AR000EEMQ8
 */
邓志豪 已提交
258
HWTEST_F(UIChartDataSerialTest, UIChartDataSerialGetValleyIndex_001, TestSize.Level1)
M
mamingshuai 已提交
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
{
    if (chartDataSerial_ == nullptr) {
        EXPECT_EQ(1, 0);
        return;
    }
    bool ret = chartDataSerial_->AddPoints(POINT_ARRAY, ARRAY_SIZE);
    EXPECT_EQ(ret, true);
    uint16_t index = chartDataSerial_->GetValleyIndex();
    EXPECT_EQ(index, 0);
}

/**
 * @tc.name: UIChartDataSerialGetLatestIndex_001
 * @tc.desc: Verify GetLatestIndex function, equal.
 * @tc.type: FUNC
 * @tc.require: AR000EEMQ8
 */
邓志豪 已提交
276
HWTEST_F(UIChartDataSerialTest, UIChartDataSerialGetLatestIndex_001, TestSize.Level1)
M
mamingshuai 已提交
277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314
{
    if (chartDataSerial_ == nullptr) {
        EXPECT_EQ(1, 0);
        return;
    }
    bool ret = chartDataSerial_->AddPoints(POINT_ARRAY, ARRAY_SIZE);
    EXPECT_EQ(ret, true);
    uint16_t index = chartDataSerial_->GetLatestIndex();
    EXPECT_EQ(index, ARRAY_SIZE - 1);
}

/**
 * @tc.name: UIChartDataSerialSetLastPointIndex_001
 * @tc.desc: Verify SetLastPointIndex function, equal.
 * @tc.type: FUNC
 * @tc.require: AR000EEMQ8
 */
HWTEST_F(UIChartDataSerialTest, UIChartDataSerialSetLastPointIndex_001, TestSize.Level1)
{
    if (chartDataSerial_ == nullptr) {
        EXPECT_EQ(1, 0);
        return;
    }
    bool ret = chartDataSerial_->AddPoints(POINT_ARRAY, ARRAY_SIZE);
    EXPECT_EQ(ret, true);
    uint16_t index = chartDataSerial_->GetLastPointIndex();
    EXPECT_EQ(index, 0);
    const uint16_t lastPointIndex = 4;
    chartDataSerial_->SetLastPointIndex(lastPointIndex);
    EXPECT_EQ(chartDataSerial_->GetLastPointIndex(), lastPointIndex);
}

/**
 * @tc.name: UIChartDataSerialSetLineColor_001
 * @tc.desc: Verify SetLineColor function, equal.
 * @tc.type: FUNC
 * @tc.require: AR000EEMQ8
 */
邓志豪 已提交
315
HWTEST_F(UIChartDataSerialTest, UIChartDataSerialSetLineColor_001, TestSize.Level1)
M
mamingshuai 已提交
316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
{
    if (chartDataSerial_ == nullptr) {
        EXPECT_EQ(1, 0);
        return;
    }
    ColorType color = Color::Red();
    chartDataSerial_->SetLineColor(color);
    EXPECT_EQ(chartDataSerial_->GetLineColor().full, color.full);
}

/**
 * @tc.name: UIChartDataSerialSetFillColor_001
 * @tc.desc: Verify SetFillColor function, equal.
 * @tc.type: FUNC
 * @tc.require: AR000EEMQ8
 */
邓志豪 已提交
332
HWTEST_F(UIChartDataSerialTest, UIChartDataSerialSetFillColor_001, TestSize.Level1)
M
mamingshuai 已提交
333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348
{
    if (chartDataSerial_ == nullptr) {
        EXPECT_EQ(1, 0);
        return;
    }
    ColorType color = Color::Red();
    chartDataSerial_->SetFillColor(color);
    EXPECT_EQ(chartDataSerial_->GetFillColor().full, color.full);
}

/**
 * @tc.name: UIChartDataSerialHidePoint_001
 * @tc.desc: Verify HidePoint function, equal.
 * @tc.type: FUNC
 * @tc.require: AR000EEMQ8
 */
邓志豪 已提交
349
HWTEST_F(UIChartDataSerialTest, UIChartDataSerialHidePoint_001, TestSize.Level1)
M
mamingshuai 已提交
350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436
{
    if (chartDataSerial_ == nullptr) {
        EXPECT_EQ(1, 0);
        return;
    }
    const uint16_t index = 3;
    const uint16_t count = 5;
    chartDataSerial_->HidePoint(index, count);
    EXPECT_EQ(chartDataSerial_->GetHideIndex(), index);
    EXPECT_EQ(chartDataSerial_->GetHideCount(), count);
}

/**
 * @tc.name: UIChartDataSerialSetHeadPointStyle_001
 * @tc.desc: Verify SetHeadPointStyle function, equal.
 * @tc.type: FUNC
 * @tc.require: AR000EEMQ8
 */
HWTEST_F(UIChartDataSerialTest, UIChartDataSerialSetHeadPointStyle_001, TestSize.Level0)
{
    if (chartDataSerial_ == nullptr) {
        EXPECT_EQ(1, 0);
        return;
    }
    UIChartDataSerial::PointStyle pointStyle;
    InitPointStyle(pointStyle);

    chartDataSerial_->SetHeadPointStyle(pointStyle);
    UIChartDataSerial::PointStyle pointStyle1 = chartDataSerial_->GetHeadPointStyle();
    EXPECT_EQ(pointStyle1.fillColor.full, pointStyle.fillColor.full);
    EXPECT_EQ(pointStyle1.strokeColor.full, pointStyle.strokeColor.full);
    EXPECT_EQ(pointStyle1.strokeWidth, pointStyle.strokeWidth);
    EXPECT_EQ(pointStyle1.radius, pointStyle.radius);
}

/**
 * @tc.name: UIChartDataSerialSetTopPointStyle_001
 * @tc.desc: Verify SetTopPointStyle function, equal.
 * @tc.type: FUNC
 * @tc.require: AR000EEMQ8
 */
HWTEST_F(UIChartDataSerialTest, UIChartDataSerialSetTopPointStyle_001, TestSize.Level0)
{
    if (chartDataSerial_ == nullptr) {
        EXPECT_EQ(1, 0);
        return;
    }
    UIChartDataSerial::PointStyle pointStyle;
    InitPointStyle(pointStyle);

    chartDataSerial_->SetTopPointStyle(pointStyle);
    UIChartDataSerial::PointStyle pointStyle1 = chartDataSerial_->GetTopPointStyle();
    EXPECT_EQ(pointStyle1.fillColor.full, pointStyle.fillColor.full);
    EXPECT_EQ(pointStyle1.strokeColor.full, pointStyle.strokeColor.full);
    EXPECT_EQ(pointStyle1.strokeWidth, pointStyle.strokeWidth);
    EXPECT_EQ(pointStyle1.radius, pointStyle.radius);
}

/**
 * @tc.name: UIChartDataSerialSetBottomPointStyle_001
 * @tc.desc: Verify SetBottomPointStyle function, equal.
 * @tc.type: FUNC
 * @tc.require: AR000EEMQ8
 */
HWTEST_F(UIChartDataSerialTest, UIChartDataSerialSetBottomPointStyle_001, TestSize.Level0)
{
    if (chartDataSerial_ == nullptr) {
        EXPECT_EQ(1, 0);
        return;
    }
    UIChartDataSerial::PointStyle pointStyle;
    InitPointStyle(pointStyle);

    chartDataSerial_->SetBottomPointStyle(pointStyle);
    UIChartDataSerial::PointStyle pointStyle1 = chartDataSerial_->GetBottomPointStyle();
    EXPECT_EQ(pointStyle1.fillColor.full, pointStyle.fillColor.full);
    EXPECT_EQ(pointStyle1.strokeColor.full, pointStyle.strokeColor.full);
    EXPECT_EQ(pointStyle1.strokeWidth, pointStyle.strokeWidth);
    EXPECT_EQ(pointStyle1.radius, pointStyle.radius);
}

/**
 * @tc.name: UIChartAddDataSerial_001
 * @tc.desc: Verify AddDataSerial function, equal.
 * @tc.type: FUNC
 * @tc.require: AR000EEMQ8
 */
邓志豪 已提交
437
HWTEST_F(UIChartDataSerialTest, UIChartAddDataSerial_001, TestSize.Level1)
M
mamingshuai 已提交
438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456
{
    if (chart_ == nullptr) {
        EXPECT_EQ(1, 0);
        return;
    }
    bool ret = chart_->AddDataSerial(nullptr);
    EXPECT_EQ(ret, false);
    ret = chart_->AddDataSerial(chartDataSerial_);
    EXPECT_EQ(ret, true);
    ret = chart_->AddDataSerial(chartDataSerial_);
    EXPECT_EQ(ret, false);
}

/**
 * @tc.name: UIChartDeleteDataSerial_001
 * @tc.desc: Verify DeleteDataSerial function, equal.
 * @tc.type: FUNC
 * @tc.require: AR000EEMQ8
 */
邓志豪 已提交
457
HWTEST_F(UIChartDataSerialTest, UIChartDeleteDataSerial_001, TestSize.Level1)
M
mamingshuai 已提交
458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478
{
    if (chart_ == nullptr) {
        EXPECT_EQ(1, 0);
        return;
    }
    bool ret = chart_->DeleteDataSerial(nullptr);
    EXPECT_EQ(ret, false);
    ret = chart_->DeleteDataSerial(chartDataSerial_);
    EXPECT_EQ(ret, false);
    ret = chart_->AddDataSerial(chartDataSerial_);
    EXPECT_EQ(ret, true);
    ret = chart_->DeleteDataSerial(chartDataSerial_);
    EXPECT_EQ(ret, true);
}

/**
 * @tc.name: UIChartClearDataSerial_001
 * @tc.desc: Verify ClearDataSerial function, equal.
 * @tc.type: FUNC
 * @tc.require: AR000EEMQ8
 */
邓志豪 已提交
479
HWTEST_F(UIChartDataSerialTest, UIChartClearDataSerial_001, TestSize.Level1)
M
mamingshuai 已提交
480 481 482 483 484 485 486 487 488 489 490 491
{
    if (chart_ == nullptr) {
        EXPECT_EQ(1, 0);
        return;
    }
    bool ret = chart_->AddDataSerial(chartDataSerial_);
    EXPECT_EQ(ret, true);
    chart_->ClearDataSerial();
    ret = chart_->DeleteDataSerial(chartDataSerial_);
    EXPECT_EQ(ret, false);
}
}