1   /**
2    * Copyright 2010 The Apache Software Foundation
3    *
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   *
12   *     http://www.apache.org/licenses/LICENSE-2.0
13   *
14   * Unless required by applicable law or agreed to in writing, software
15   * distributed under the License is distributed on an "AS IS" BASIS,
16   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17   * See the License for the specific language governing permissions and
18   * limitations under the License.
19   */
20  package org.apache.hadoop.hbase.master;
21  
22  import java.net.InetAddress;
23  
24  import junit.framework.Assert;
25  
26  import org.apache.commons.logging.Log;
27  import org.apache.commons.logging.LogFactory;
28  import org.apache.hadoop.conf.Configuration;
29  import org.apache.hadoop.hbase.ClockOutOfSyncException;
30  import org.apache.hadoop.hbase.HBaseConfiguration;
31  import org.apache.hadoop.hbase.Server;
32  import org.apache.hadoop.hbase.ServerName;
33  import org.apache.hadoop.hbase.catalog.CatalogTracker;
34  import org.apache.hadoop.hbase.zookeeper.ZooKeeperWatcher;
35  import org.junit.Test;
36  
37  
38  public class TestClockSkewDetection {
39    private static final Log LOG =
40      LogFactory.getLog(TestClockSkewDetection.class);
41  
42    @Test
43    public void testClockSkewDetection() throws Exception {
44      final Configuration conf = HBaseConfiguration.create();
45      ServerManager sm = new ServerManager(new Server() {
46        @Override
47        public CatalogTracker getCatalogTracker() {
48          return null;
49        }
50  
51        @Override
52        public Configuration getConfiguration() {
53          return conf;
54        }
55  
56        @Override
57        public ServerName getServerName() {
58          return null;
59        }
60  
61        @Override
62        public ZooKeeperWatcher getZooKeeper() {
63          return null;
64        }
65  
66        @Override
67        public void abort(String why, Throwable e) {}
68        
69        @Override
70        public boolean isAborted() {
71          return false;
72        }
73  
74        @Override
75        public boolean isStopped() {
76          return false;
77        }
78  
79        @Override
80        public void stop(String why) {
81        }}, null, false);
82  
83      LOG.debug("regionServerStartup 1");
84      InetAddress ia1 = InetAddress.getLocalHost();
85      sm.regionServerStartup(ia1, 1234, -1, System.currentTimeMillis());
86  
87      long maxSkew = 30000;
88  
89      try {
90        LOG.debug("regionServerStartup 2");
91        InetAddress ia2 = InetAddress.getLocalHost();
92        sm.regionServerStartup(ia2, 1235, -1, System.currentTimeMillis() - maxSkew * 2);
93        Assert.assertTrue("HMaster should have thrown an ClockOutOfSyncException "
94          + "but didn't.", false);
95      } catch(ClockOutOfSyncException e) {
96        //we want an exception
97        LOG.info("Recieved expected exception: "+e);
98      }
99    }
100 }