Welcome to mirror list, hosted at ThFree Co, Russian Federation.

util_time_test.cpp « test « cycles « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0670ca2ca066e21b0dec890dee3f60f1daef51b3 (plain)
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
/* SPDX-License-Identifier: Apache-2.0
 * Copyright 2011-2022 Blender Foundation */

#include "testing/testing.h"

#include "util/time.h"

CCL_NAMESPACE_BEGIN

TEST(time_human_readable_to_seconds, Empty)
{
  EXPECT_EQ(time_human_readable_to_seconds(""), 0.0);
  EXPECT_EQ(time_human_readable_from_seconds(0.0), "00:00.00");
}

TEST(time_human_readable_to_seconds, Fraction)
{
  EXPECT_NEAR(time_human_readable_to_seconds(".1"), 0.1, 1e-8f);
  EXPECT_NEAR(time_human_readable_to_seconds(".10"), 0.1, 1e-8f);
  EXPECT_EQ(time_human_readable_from_seconds(0.1), "00:00.10");
}

TEST(time_human_readable_to_seconds, Seconds)
{
  EXPECT_NEAR(time_human_readable_to_seconds("2.1"), 2.1, 1e-8f);
  EXPECT_NEAR(time_human_readable_to_seconds("02.10"), 2.1, 1e-8f);
  EXPECT_EQ(time_human_readable_from_seconds(2.1), "00:02.10");

  EXPECT_NEAR(time_human_readable_to_seconds("12.1"), 12.1, 1e-8f);
  EXPECT_NEAR(time_human_readable_to_seconds("12.10"), 12.1, 1e-8f);
  EXPECT_EQ(time_human_readable_from_seconds(12.1), "00:12.10");
}

TEST(time_human_readable_to_seconds, MinutesSeconds)
{
  EXPECT_NEAR(time_human_readable_to_seconds("3:2.1"), 182.1, 1e-8f);
  EXPECT_NEAR(time_human_readable_to_seconds("03:02.10"), 182.1, 1e-8f);
  EXPECT_EQ(time_human_readable_from_seconds(182.1), "03:02.10");

  EXPECT_NEAR(time_human_readable_to_seconds("34:12.1"), 2052.1, 1e-8f);
  EXPECT_NEAR(time_human_readable_to_seconds("34:12.10"), 2052.1, 1e-8f);
  EXPECT_EQ(time_human_readable_from_seconds(2052.1), "34:12.10");
}

TEST(time_human_readable_to_seconds, HoursMinutesSeconds)
{
  EXPECT_NEAR(time_human_readable_to_seconds("4:3:2.1"), 14582.1, 1e-8f);
  EXPECT_NEAR(time_human_readable_to_seconds("04:03:02.10"), 14582.1, 1e-8f);
  EXPECT_EQ(time_human_readable_from_seconds(14582.1), "04:03:02.10");

  EXPECT_NEAR(time_human_readable_to_seconds("56:34:12.1"), 203652.1, 1e-8f);
  EXPECT_NEAR(time_human_readable_to_seconds("56:34:12.10"), 203652.1, 1e-8f);
  EXPECT_EQ(time_human_readable_from_seconds(203652.1), "56:34:12.10");
}

CCL_NAMESPACE_END