/* * 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.event; import static com.facebook.buck.event.TestEventConfigurator.configureTestEvent; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotEquals; import static org.junit.Assert.assertThat; import static org.junit.Assert.fail; import org.hamcrest.Matchers; import org.junit.Test; public class UninstallEventTest { @Test public void testEquals() throws Exception { UninstallEvent.Started started = configureTestEvent(UninstallEvent.started("com.foo.bar")); UninstallEvent.Started startedTwo = configureTestEvent(UninstallEvent.started("com.foo.bar")); UninstallEvent finished = configureTestEvent(UninstallEvent.finished(started, true)); UninstallEvent finishedFail = configureTestEvent(UninstallEvent.finished(started, false)); assertEquals(started, started); assertNotEquals(started, startedTwo); assertNotEquals(started, finished); try { finished.equals(finishedFail); fail("Expected an UnsupportedOperationException."); } catch (UnsupportedOperationException e) { assertThat(e.toString(), Matchers.stringContainsInOrder("conflicting", "events")); } assertThat(started.isRelatedTo(finished), Matchers.is(true)); assertThat(finished.isRelatedTo(started), Matchers.is(true)); assertThat(started.isRelatedTo(startedTwo), Matchers.is(false)); } }