blob: 23539e39e47ac6eceb33bebcbb87c6f68df04b1b [file] [log] [blame]
#!/usr/bin/env python
#
# Copyright (c) 2016-2017 Nest Labs, Inc.
# All rights reserved.
#
# Licensed 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.
#
#
# @file
# A Happy command line utility that tests Weave Message Layer between Weave nodes.
#
# The command is executed by instantiating and running WeaveMessageLayer class.
#
import getopt
import sys
import set_test_path
from happy.Utils import *
import plugin.WeaveMessageLayer as WeaveMessageLayer
if __name__ == "__main__":
options = WeaveMessageLayer.option()
try:
opts, args = getopt.getopt(sys.argv[1:], "hc:s:n:tqp:",
["help", "client=", "server=", "count=", "tcp", "quiet", "tap="])
except getopt.GetoptError as err:
print WeaveMessageLayer.WeaveMessageLayer.__doc__
print hred(str(err))
sys.exit(hred("%s: Failed server parse arguments." % (__file__)))
for o, a in opts:
if o in ("-h", "--help"):
print WeaveMessageLayer.WeaveMessageLayer.__doc__
sys.exit(0)
elif o in ("-q", "--quiet"):
options["quiet"] = True
elif o in ("-t", "--tcp"):
options["tcp"] = True
elif o in ("-c", "--client"):
options["client"] = a
elif o in ("-s", "--server"):
options["server"] = a
elif o in ("-n", "--count"):
options["count"] = a
elif o in ("-p", "--tap"):
options["tap"] = a
else:
assert False, "unhandled option"
if len(args) == 1:
options["origin"] = args[0]
if len(args) == 2:
options["client"] = args[0]
options["server"] = args[1]
cmd = WeaveMessageLayer.WeaveMessageLayer(options)
cmd.start()