blob: 18aa471abd158620b30454844fad83dc231041ec [file] [log] [blame]
Tao Baoc3901232018-05-21 16:05:56 -07001/*
2 * Copyright (C) 2018 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <string>
18
19#include <gtest/gtest.h>
20
21#include "private/commands.h"
22
23TEST(CommandsTest, ParseType) {
24 ASSERT_EQ(Command::Type::ZERO, Command::ParseType("zero"));
25 ASSERT_EQ(Command::Type::NEW, Command::ParseType("new"));
26 ASSERT_EQ(Command::Type::ERASE, Command::ParseType("erase"));
27 ASSERT_EQ(Command::Type::MOVE, Command::ParseType("move"));
28 ASSERT_EQ(Command::Type::BSDIFF, Command::ParseType("bsdiff"));
29 ASSERT_EQ(Command::Type::IMGDIFF, Command::ParseType("imgdiff"));
30 ASSERT_EQ(Command::Type::STASH, Command::ParseType("stash"));
31 ASSERT_EQ(Command::Type::FREE, Command::ParseType("free"));
32}
33
34TEST(CommandsTest, ParseType_InvalidCommand) {
35 ASSERT_EQ(Command::Type::LAST, Command::ParseType("foo"));
36 ASSERT_EQ(Command::Type::LAST, Command::ParseType("bar"));
37}