aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/test/java/com/yahoo/searchlib/expression/TimeStampFunctionTestCase.java
blob: 69cea09df81b521c78f7990addccd68ffd9bf7eb (plain) (blame)
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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.searchlib.expression;

import org.junit.Test;

import java.util.Arrays;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertSame;

/**
 * @author Simon Thoresen Hult
 */
public class TimeStampFunctionTestCase {

    @Test
    public void requireThatAccessorsWork() {
        ExpressionNode arg = new AttributeNode("foo");
        for (TimeStampFunctionNode.TimePart part : TimeStampFunctionNode.TimePart.values()) {
            for (Boolean gmt : Arrays.asList(true, false)) {
                TimeStampFunctionNode node = new TimeStampFunctionNode(arg, part, gmt);
                assertSame(arg, node.getArg());
                assertEquals(part, node.getTimePart());
                assertEquals(gmt, node.isGmt());
                assertEquals(!gmt, node.isLocal());
            }
        }
    }
}