HBASE-23868 : Replace usages of HColumnDescriptor(byte [] familyName)… (#1222)
[hbase.git] / hbase-backup / src / test / java / org / apache / hadoop / hbase / backup / TestFullBackup.java
blob28624338f3a309b722f592724aefd09014f593c7
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;
23 import org.apache.hadoop.hbase.HBaseClassTestRule;
24 import org.apache.hadoop.hbase.backup.impl.BackupSystemTable;
25 import org.apache.hadoop.hbase.testclassification.LargeTests;
26 import org.apache.hadoop.util.ToolRunner;
27 import org.junit.ClassRule;
28 import org.junit.Test;
29 import org.junit.experimental.categories.Category;
30 import org.slf4j.Logger;
31 import org.slf4j.LoggerFactory;
33 @Category(LargeTests.class)
34 public class TestFullBackup extends TestBackupBase {
36 @ClassRule
37 public static final HBaseClassTestRule CLASS_RULE =
38 HBaseClassTestRule.forClass(TestFullBackup.class);
40 private static final Logger LOG = LoggerFactory.getLogger(TestFullBackup.class);
42 @Test
43 public void testFullBackupMultipleCommand() throws Exception {
44 LOG.info("test full backup on a multiple tables with data: command-line");
45 try (BackupSystemTable table = new BackupSystemTable(TEST_UTIL.getConnection())) {
46 int before = table.getBackupHistory().size();
47 String[] args =
48 new String[] { "create", "full", BACKUP_ROOT_DIR, "-t",
49 table1.getNameAsString() + "," + table2.getNameAsString() };
50 // Run backup
51 int ret = ToolRunner.run(conf1, new BackupDriver(), args);
52 assertTrue(ret == 0);
53 List<BackupInfo> backups = table.getBackupHistory();
54 int after = table.getBackupHistory().size();
55 assertTrue(after == before + 1);
56 for (BackupInfo data : backups) {
57 String backupId = data.getBackupId();
58 assertTrue(checkSucceeded(backupId));
61 LOG.info("backup complete");