HBASE-17614: Move Backup/Restore into separate module (Vladimir Rodionov)
[hbase.git] / hbase-backup / src / test / java / org / apache / hadoop / hbase / backup / TestFullBackup.java
blob124d19f026ac9e09aa4f447b4abde8cab005348b
1 /**
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
10 * http://www.apache.org/licenses/LICENSE-2.0
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
18 package org.apache.hadoop.hbase.backup;
20 import static org.junit.Assert.assertTrue;
22 import java.util.List;
24 import org.apache.commons.logging.Log;
25 import org.apache.commons.logging.LogFactory;
26 import org.apache.hadoop.hbase.backup.impl.BackupSystemTable;
27 import org.apache.hadoop.hbase.testclassification.LargeTests;
28 import org.apache.hadoop.util.ToolRunner;
29 import org.junit.Test;
30 import org.junit.experimental.categories.Category;
32 @Category(LargeTests.class)
33 public class TestFullBackup extends TestBackupBase {
35 private static final Log LOG = LogFactory.getLog(TestFullBackup.class);
37 @Test
38 public void testFullBackupMultipleCommand() throws Exception {
39 LOG.info("test full backup on a multiple tables with data: command-line");
40 try (BackupSystemTable table = new BackupSystemTable(TEST_UTIL.getConnection())) {
41 int before = table.getBackupHistory().size();
42 String[] args =
43 new String[] { "create", "full", BACKUP_ROOT_DIR, "-t",
44 table1.getNameAsString() + "," + table2.getNameAsString() };
45 // Run backup
46 int ret = ToolRunner.run(conf1, new BackupDriver(), args);
47 assertTrue(ret == 0);
48 List<BackupInfo> backups = table.getBackupHistory();
49 int after = table.getBackupHistory().size();
50 assertTrue(after == before + 1);
51 for (BackupInfo data : backups) {
52 String backupId = data.getBackupId();
53 assertTrue(checkSucceeded(backupId));
56 LOG.info("backup complete");