blob: b22cb22df9fe68dc4b6683c048ac37f59e99b335 [file] [log] [blame]
/*
* Copyright 2013-present Facebook, Inc.
*
* 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.
*/
package com.facebook.buck.cli;
import static com.facebook.buck.event.TestEventConfigerator.configureTestEvent;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotEquals;
import org.junit.Test;
public class CommandEventTest {
@Test
public void testEquals() throws Exception {
CommandEvent startedDaemon = configureTestEvent(CommandEvent.started("build", true));
CommandEvent startedDaemonTwo = configureTestEvent(CommandEvent.started("build", true));
CommandEvent startedNoDaemon = configureTestEvent(CommandEvent.started("build", false));
CommandEvent finishedDaemon = configureTestEvent(CommandEvent.finished("build", true, 0));
CommandEvent finishedDaemonFailed = configureTestEvent(CommandEvent.finished("build", true, 1));
CommandEvent finishedDifferentName = configureTestEvent(CommandEvent.finished("test", true, 0));
assertEquals(startedDaemon, startedDaemonTwo);
assertNotEquals(startedDaemon, startedNoDaemon);
assertNotEquals(finishedDaemon, startedDaemon);
assertNotEquals(finishedDaemon, finishedDaemonFailed);
assertNotEquals(finishedDaemon, finishedDifferentName);
}
}