// This file is part of OpenTSDB.
// Copyright (C) 2010-2012 The OpenTSDB Authors.
//
// This program is free software: you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 2.1 of the License, or (at your
// option) any later version. This program is distributed in the hope that it
// will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
// General Public License for more details. You should have received a copy
// of the GNU Lesser General Public License along with this program. If not,
// see <http://www.gnu.org/licenses/>.
package net.opentsdb.meta;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.mockito.Matchers.anyString;
import static org.powermock.api.mockito.PowerMockito.mock;
import java.util.List;
import net.opentsdb.core.TSDB;
import net.opentsdb.storage.MockBase;
import net.opentsdb.uid.UniqueId;
import net.opentsdb.utils.Config;
import net.opentsdb.utils.JSON;
import org.hbase.async.DeleteRequest;
import org.hbase.async.GetRequest;
import org.hbase.async.HBaseClient;
import org.hbase.async.KeyValue;
import org.hbase.async.PutRequest;
import org.hbase.async.Scanner;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.powermock.api.mockito.PowerMockito;
import org.powermock.core.classloader.annotations.PowerMockIgnore;
import org.powermock.core.classloader.annotations.PrepareForTest;
import org.powermock.modules.junit4.PowerMockRunner;
@PowerMockIgnore({"javax.management.*", "javax.xml.*",
"ch.qos.*", "org.slf4j.*",
"com.sum.*", "org.xml.*"})
@RunWith(PowerMockRunner.class)
@PrepareForTest({TSDB.class, Config.class, UniqueId.class, HBaseClient.class,
GetRequest.class, PutRequest.class, DeleteRequest.class, KeyValue.class,
Scanner.class, Annotation.class})
public final class TestAnnotation {
private TSDB tsdb;
private HBaseClient client = mock(HBaseClient.class);
private MockBase storage;
private Annotation note = new Annotation();
@Before
public void before() throws Exception {
final Config config = new Config(false);
PowerMockito.whenNew(HBaseClient.class)
.withArguments(anyString(), anyString()).thenReturn(client);
tsdb = new TSDB(config);
storage = new MockBase(tsdb, client, true, true, true, true);
// add a global
storage.addColumn(
new byte[] { 0, 0, 0, (byte) 0x4F, (byte) 0x29, (byte) 0xD2, 0 },
new byte[] { 1, 0, 0 },
("{\"startTime\":1328140800,\"endTime\":1328140801,\"description\":" +
"\"Description\",\"notes\":\"Notes\",\"custom\":{\"owner\":" +
"\"ops\"}}").getBytes(MockBase.ASCII()));
storage.addColumn(
new byte[] { 0, 0, 0, (byte) 0x4F, (byte) 0x29, (byte) 0xD2, 0 },
new byte[] { 1, 0, 1 },
("{\"startTime\":1328140801,\"endTime\":1328140803,\"description\":" +
"\"Global 2\",\"notes\":\"Nothing\"}").getBytes(MockBase.ASCII()));
// add a local
storage.addColumn(
new byte[] { 0, 0, 1, (byte) 0x52, (byte) 0xC2, (byte) 0x09, 0, 0, 0,
1, 0, 0, 1 },
new byte[] { 1, 0x0A, 0x02 },
("{\"tsuid\":\"000001000001000001\",\"startTime\":1388450562," +
"\"endTime\":1419984000,\"description\":\"Hello!\",\"notes\":" +
"\"My Notes\",\"custom\":{\"owner\":\"ops\"}}")
.getBytes(MockBase.ASCII()));
}
@Test
public void constructor() {
assertNotNull(new Annotation());
}
@Test
public void serialize() throws Exception {
assertNotNull(JSON.serializeToString(note));
}
@Test
public void deserialize() throws Exception {
String json = "{\"tsuid\":\"ABCD\",\"description\":\"Description\"," +
"\"notes\":\"Notes\",\"custom\":null,\"endTime\":1328140801,\"startTime" +
"\":1328140800}";
Annotation note = JSON.parseToObject(json, Annotation.class);
assertNotNull(note);
assertEquals(note.getTSUID(), "ABCD");
}
@Test
public void getAnnotation() throws Exception {
note = Annotation.getAnnotation(tsdb, "000001000001000001", 1388450562L)
.joinUninterruptibly();
assertNotNull(note);
assertEquals("000001000001000001", note.getTSUID());
assertEquals("Hello!", note.getDescription());
assertEquals(1388450562L, note.getStartTime());
}
@Test
public void getAnnotationGlobal() throws Exception {
note = Annotation.getAnnotation(tsdb, 1328140800L)
.joinUninterruptibly();
assertNotNull(note);
assertEquals("", note.getTSUID());
assertEquals("Description", note.getDescription());
assertEquals(1328140800L, note.getStartTime());
}
@Test
public void getAnnotationNotFound() throws Exception {
note = Annotation.getAnnotation(tsdb, "000001000001000001", 1388450563L)
.joinUninterruptibly();
assertNull(note);
}
@Test
public void getAnnotationGlobalNotFound() throws Exception {
note = Annotation.getAnnotation(tsdb, 1388450563L)
.joinUninterruptibly();
assertNull(note);
}
@Test (expected = IllegalArgumentException.class)
public void getAnnotationNoStartTime() throws Exception {
Annotation.getAnnotation(tsdb, "000001000001000001", 0L)
.joinUninterruptibly();
}
@Test
public void getGlobalAnnotations() throws Exception {
List<Annotation> notes = Annotation.getGlobalAnnotations(tsdb, 1328140000,
1328141000).joinUninterruptibly();
assertNotNull(notes);
assertEquals(2, notes.size());
Annotation note0 = notes.get(0);
Annotation note1 = notes.get(1);
assertEquals("Description", note0.getDescription());
assertEquals("Global 2", note1.getDescription());
}
@Test
public void getGlobalAnnotationsEmpty() throws Exception {
List<Annotation> notes = Annotation.getGlobalAnnotations(tsdb, 1328150000,
1328160000).joinUninterruptibly();
assertNotNull(notes);
assertEquals(0, notes.size());
}
@Test (expected = IllegalArgumentException.class)
public void getGlobalAnnotationsZeroEndtime() throws Exception {
Annotation.getGlobalAnnotations(tsdb, 0, 0).joinUninterruptibly();
}
@Test (expected = IllegalArgumentException.class)
public void getGlobalAnnotationsEndLessThanStart() throws Exception {
Annotation.getGlobalAnnotations(tsdb, 1328150000, 1328140000).joinUninterruptibly();
}
@Test
public void syncToStorage() throws Exception {
note.setTSUID("000001000001000001");
note.setStartTime(1388450562L);
note.setDescription("Synced!");
note.syncToStorage(tsdb, false).joinUninterruptibly();
final byte[] col = storage.getColumn(
new byte[] { 0, 0, 1, (byte) 0x52, (byte) 0xC2, (byte) 0x09,
0, 0, 0, 1, 0, 0, 1 },
new byte[] { 1, 0x0A, 0x02 });
note = JSON.parseToObject(col, Annotation.class);
assertEquals("000001000001000001", note.getTSUID());
assertEquals("Synced!", note.getDescription());
assertEquals("My Notes", note.getNotes());
}
@Test
public void syncToStorageMilliseconds() throws Exception {
note.setTSUID("000001000001000001");
note.setStartTime(1388450562500L);
note.setDescription("Synced!");
note.syncToStorage(tsdb, false).joinUninterruptibly();
final byte[] col = storage.getColumn(
new byte[] { 0, 0, 1, (byte) 0x52, (byte) 0xC2, (byte) 0x09,
0, 0, 0, 1, 0, 0, 1 },
new byte[] { 1, 0x00, 0x27, 0x19, (byte) 0xC4 });
note = JSON.parseToObject(col, Annotation.class);
assertEquals("000001000001000001", note.getTSUID());
assertEquals("Synced!", note.getDescription());
assertEquals("", note.getNotes());
assertEquals(1388450562500L, note.getStartTime());
}
@Test
public void syncToStorageGlobal() throws Exception {
note.setStartTime(1328140800L);
note.setDescription("Synced!");
note.syncToStorage(tsdb, false).joinUninterruptibly();
final byte[] col = storage.getColumn(
new byte[] { 0, 0, 0, (byte) 0x4F, (byte) 0x29, (byte) 0xD2, 0 },
new byte[] { 1, 0, 0 });
note = JSON.parseToObject(col, Annotation.class);
assertEquals("", note.getTSUID());
assertEquals("Synced!", note.getDescription());
assertEquals("Notes", note.getNotes());
}
@Test
public void syncToStorageGlobalMilliseconds() throws Exception {
note.setStartTime(1328140800500L);
note.setDescription("Synced!");
note.syncToStorage(tsdb, false).joinUninterruptibly();
final byte[] col = storage.getColumn(
new byte[] { 0, 0, 0, (byte) 0x4F, (byte) 0x29, (byte) 0xD2, 0 },
new byte[] { 1, 0, 0, 1, (byte) 0xF4 });
note = JSON.parseToObject(col, Annotation.class);
assertEquals("", note.getTSUID());
assertEquals("Synced!", note.getDescription());
assertEquals("", note.getNotes());
}
@Test (expected = IllegalArgumentException.class)
public void syncToStorageMissingStart() throws Exception {
note.setTSUID("000001000001000001");
note.setDescription("Synced!");
note.syncToStorage(tsdb, false).joinUninterruptibly();
}
@Test (expected = IllegalStateException.class)
public void syncToStorageNoChanges() throws Exception {
note.setTSUID("000001000001000001");
note.setStartTime(1388450562L);
note.syncToStorage(tsdb, false).joinUninterruptibly();
}
}