blob: 21600b9bbe3c10a5b23a68318a4f806faec9d9c8 [file] [log] [blame]
/*
* Copyright 2014-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.log;
import static org.junit.Assert.assertEquals;
import org.junit.Test;
import java.util.Locale;
import java.util.TimeZone;
import java.util.concurrent.ConcurrentHashMap;
import java.util.logging.Level;
import java.util.logging.LogRecord;
/**
* Unit tests for {@link LogFormatter}.
*/
public class LogFormatterTest {
@Test
public void logFormatIncludesMessageAndTimestamp() {
ConcurrentHashMap<Long, String> threadIdToCommandId = new ConcurrentHashMap<>();
LogFormatter logFormatter = new LogFormatter(
threadIdToCommandId,
Locale.US,
TimeZone.getTimeZone("America/Los_Angeles"));
threadIdToCommandId.put(64738L, "testCommandId");
LogRecord record = logRecord(Level.INFO, "Test", "testLogger", 64738, 1409072580000L);
assertEquals(
logFormatter.format(record),
"[2014-08-26 10:03:00.000][info ][command:testCommandId][tid:64738][testLogger] Test\n");
}
private static LogRecord logRecord(
Level level,
String message,
String loggerName,
int tid,
long millis) {
LogRecord result = new LogRecord(level, message);
result.setLoggerName(loggerName);
result.setMillis(millis);
result.setThreadID(tid);
return result;
}
}