| # |
| # |
| # Licensed to the Apache Software Foundation (ASF) under one |
| # or more contributor license agreements. See the NOTICE file |
| # distributed with this work for additional information |
| # regarding copyright ownership. The ASF licenses this file |
| # to you 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. |
| # |
| |
| require 'hbase_constants' |
| require 'hbase_shell' |
| |
| class ShellTest < Test::Unit::TestCase |
| include Hbase::TestHelpers |
| |
| def setup |
| @hbase = ::Hbase::Hbase.new($TEST_CLUSTER.getConfiguration) |
| @shell = Shell::Shell.new(@hbase) |
| end |
| |
| define_test "Shell::Shell#admin should return an admin instance" do |
| assert_kind_of(Hbase::Admin, @shell.admin) |
| end |
| |
| define_test "Shell::Shell#admin should cache admin instances" do |
| assert_same(@shell.admin, @shell.admin) |
| end |
| |
| #------------------------------------------------------------------------------- |
| |
| define_test "Shell::Shell#hbase_table should return a table instance" do |
| assert_kind_of(Hbase::Table, @shell.hbase_table('hbase:meta')) |
| end |
| |
| define_test "Shell::Shell#hbase_table should not cache table instances" do |
| assert_not_same(@shell.hbase_table('hbase:meta'), @shell.hbase_table('hbase:meta')) |
| end |
| |
| define_test "Shell::Shell#hbase attribute is a HBase instance" do |
| assert_kind_of(Hbase::Hbase, @shell.hbase) |
| end |
| |
| #------------------------------------------------------------------------------- |
| |
| define_test "Shell::Shell#export_commands should export command methods to specified object" do |
| module Foo; end |
| assert(!Foo.respond_to?(:version)) |
| @shell.export_commands(Foo) |
| assert(Foo.respond_to?(:version)) |
| end |
| |
| #------------------------------------------------------------------------------- |
| |
| define_test 'Shell::Shell#export_all export commands, constants, and variables' do |
| module FooM; end |
| class FooC; end |
| foo = FooC.new |
| |
| # export_all should reject classes and modules as targets |
| assert_raise(ArgumentError) do |
| @shell.export_all(FooM) |
| end |
| assert_raise(ArgumentError) do |
| @shell.export_all(FooC) |
| end |
| |
| # For potency, verify that none of the commands, variables or constants exist before export |
| assert(!foo.respond_to?(:version)) |
| assert(foo.instance_variable_get(:'@shell').nil?) |
| assert(foo.instance_variable_get(:'@hbase').nil?) |
| assert(!foo.class.const_defined?(:IN_MEMORY_COMPACTION)) # From HBaseConstants |
| assert(!foo.class.const_defined?(:QUOTA_TABLE_NAME)) # From HBaseQuotasConstants |
| |
| @shell.export_all(foo) |
| |
| # Now verify that all the commands, variables, and constants are installed |
| assert(foo.respond_to?(:version)) |
| assert(foo.instance_variable_get(:'@shell') == @shell) |
| assert(foo.instance_variable_get(:'@hbase') == @hbase) |
| assert(foo.class.const_defined?(:IN_MEMORY_COMPACTION)) # From HBaseConstants |
| assert(foo.class.const_defined?(:QUOTA_TABLE_NAME)) # From HBaseQuotasConstants |
| |
| # commands should not exist on the class of target |
| assert_raise(NameError) do |
| FooC.method :version |
| end |
| assert_raise(NameError) do |
| FooC.instance_method :version |
| end |
| end |
| |
| #------------------------------------------------------------------------------- |
| |
| define_test "Shell::Shell#command_instance should return a command class" do |
| assert_kind_of(Shell::Commands::Command, @shell.command_instance('version')) |
| end |
| |
| #------------------------------------------------------------------------------- |
| |
| define_test "Shell::Shell#command should execute a command" do |
| @shell.command('version') |
| end |
| |
| #----------------------------------------------------------------------------- |
| |
| define_test 'Shell::Shell#exception_handler should hide traceback' do |
| class TestException < RuntimeError; end |
| # When hide_traceback is true, exception_handler should replace exceptions |
| # with SystemExit so that the traceback is not printed. |
| assert_raises(SystemExit) do |
| ::Shell::Shell.exception_handler(true) { raise TestException, 'Custom Exception' } |
| end |
| end |
| |
| define_test 'Shell::Shell#exception_handler should show traceback' do |
| class TestException < RuntimeError; end |
| # When hide_traceback is false, exception_handler should re-raise Exceptions |
| assert_raises(TestException) do |
| ::Shell::Shell.exception_handler(false) { raise TestException, 'Custom Exception' } |
| end |
| end |
| |
| #----------------------------------------------------------------------------- |
| |
| define_test 'Shell::Shell#print_banner should display Reference Guide link' do |
| @shell.interactive = true |
| output = capture_stdout { @shell.print_banner } |
| @shell.interactive = false |
| link_regex = %r{For Reference, please visit: http://hbase.apache.org/book.html#shell} |
| assert_match(link_regex, output) |
| end |
| |
| #----------------------------------------------------------------------------- |
| |
| define_test 'Shell::Shell interactive mode should not throw' do |
| # incorrect number of arguments |
| @shell.command('create', 'nothrow_table') |
| @shell.command('create', 'nothrow_table', 'family_1') |
| # create a table that exists |
| @shell.command('create', 'nothrow_table', 'family_1') |
| end |
| end |