blob: b939771c9fb21f827078ad8b3ace96b99926e2ad [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.ignite.internal.util;
import java.util.Collections;
import java.util.List;
import org.apache.ignite.Ignite;
import org.apache.ignite.IgniteLogger;
import org.apache.ignite.IgniteSystemProperties;
import org.apache.ignite.lang.IgniteRunnable;
import org.apache.ignite.resources.IgniteInstanceResource;
import org.apache.ignite.testframework.GridStringLogger;
import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest;
import org.junit.Ignore;
import org.junit.Test;
/**
* Testing logging via {@link IgniteUtils#warnDevOnly(IgniteLogger, Object)}.
*/
public class IgniteDevOnlyLogTest extends GridCommonAbstractTest {
/** */
private List<String> additionalArgs;
/** {@inheritDoc} */
@Override protected void beforeTest() throws Exception {
startGrid(0);
}
/** {@inheritDoc} */
@Override protected void afterTest() throws Exception {
stopAllGrids();
}
/** {@inheritDoc} */
@Override protected boolean isMultiJvm() {
return true;
}
/** {@inheritDoc} */
@Override protected List<String> additionalRemoteJvmArgs() {
return additionalArgs;
}
/** Check that dev-only messages appear in the log. */
@Ignore("https://issues.apache.org/jira/browse/IGNITE-9328")
@Test
public void testDevOnlyQuietMessage() throws Exception {
additionalArgs = Collections.singletonList("-D" + IgniteSystemProperties.IGNITE_QUIET + "=true");
GridStringLogger log = new GridStringLogger(false, grid(0).log());
Ignite ignite = startGrid(optimize(getConfiguration(getTestIgniteInstanceName(1)).setGridLogger(log)));
String msg = getMessage(ignite);
warnDevOnly(msg);
assertTrue(log.toString().contains(msg));
}
/** Check that dev-only messages appear in the log. */
@Test
public void testDevOnlyVerboseMessage() throws Exception {
additionalArgs = Collections.singletonList("-D" + IgniteSystemProperties.IGNITE_QUIET + "=false");
GridStringLogger log = new GridStringLogger(false, grid(0).log());
Ignite ignite = startGrid(optimize(getConfiguration(getTestIgniteInstanceName(1)).setGridLogger(log)));
String msg = getMessage(ignite);
warnDevOnly(msg);
assertTrue(log.toString().contains(msg));
}
/**
* Check that {@link IgniteUtils#warnDevOnly(IgniteLogger, Object)}
* doesn't print anything if {@link org.apache.ignite.IgniteSystemProperties#IGNITE_DEV_ONLY_LOGGING_DISABLED}
* is set to {@code true}.
*/
@Test
public void testDevOnlyDisabledProperty() throws Exception {
additionalArgs = Collections.singletonList("-D" +
IgniteSystemProperties.IGNITE_DEV_ONLY_LOGGING_DISABLED + "=true");
GridStringLogger log = new GridStringLogger(false, grid(0).log());
Ignite ignite = startGrid(optimize(getConfiguration(getTestIgniteInstanceName(1)).setGridLogger(log)));
String msg = getMessage(ignite);
warnDevOnly(msg);
assertFalse(log.toString().contains(msg));
}
/** */
private void warnDevOnly(final String msg) {
grid(0).compute(grid(0).cluster().forRemotes()).broadcast(new IgniteRunnable() {
@IgniteInstanceResource
private Ignite ignite;
@Override public void run() {
IgniteUtils.warnDevOnly(ignite.log(), msg);
}
});
}
/** Returns a test message. */
private String getMessage(Ignite ignite) {
// use node id in the message to avoid interference with other tests
return "My id is " + ignite.cluster().localNode().id();
}
}