autotest: Delete lucifer integration test tools

Bug: 1033823
Change-Id: I3390d69ab919d6ff66fb34cb71870b895aa0a4f9
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/autotest/+/1966833
Reviewed-by: Prathmesh Prabhu <pprabhu@chromium.org>
Tested-by: Allen Li <ayatane@chromium.org>
Commit-Queue: Allen Li <ayatane@chromium.org>
diff --git a/venv/lucifer/cmd/test/__init__.py b/venv/lucifer/cmd/test/__init__.py
deleted file mode 100644
index b746f6c..0000000
--- a/venv/lucifer/cmd/test/__init__.py
+++ /dev/null
@@ -1,7 +0,0 @@
-# Copyright 2017 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-from __future__ import absolute_import
-from __future__ import division
-from __future__ import print_function
diff --git a/venv/lucifer/cmd/test/abort_socket.py b/venv/lucifer/cmd/test/abort_socket.py
deleted file mode 100644
index 10ec9f9..0000000
--- a/venv/lucifer/cmd/test/abort_socket.py
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 2017 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-"""Listen on socket until a datagram is received.
-
-This is used for testing leasing.
-"""
-
-from __future__ import absolute_import
-from __future__ import division
-from __future__ import print_function
-
-import logging
-import socket
-import sys
-
-from lucifer import loglib
-
-logger = logging.getLogger(__name__)
-
-
-def main(_args):
-    """Main function
-
-    @param args: list of command line args
-    """
-    loglib.configure_logging(name='abort_socket')
-    sock = socket.socket(socket.AF_UNIX, socket.SOCK_DGRAM)
-    sock.bind(sys.argv[1])
-    print('done')
-    sock.recv(1)
-
-
-if __name__ == '__main__':
-    sys.exit(main(sys.argv[1:]))
diff --git a/venv/lucifer/cmd/test/abort_socket_norecv.py b/venv/lucifer/cmd/test/abort_socket_norecv.py
deleted file mode 100644
index 9eb640e..0000000
--- a/venv/lucifer/cmd/test/abort_socket_norecv.py
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 2018 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-"""Open a socket without listening.
-
-This is used for testing leasing.
-"""
-
-from __future__ import absolute_import
-from __future__ import division
-from __future__ import print_function
-
-import logging
-import socket
-import sys
-import time
-
-from lucifer import loglib
-
-logger = logging.getLogger(__name__)
-
-
-def main(_args):
-    """Main function
-
-    @param args: list of command line args
-    """
-    loglib.configure_logging(name='abort_socket')
-    sock = socket.socket(socket.AF_UNIX, socket.SOCK_DGRAM)
-    sock.bind(sys.argv[1])
-    # Minimum value is 256 on Linux (but on my machine it's 2304).
-    # See also socket(7).
-    sock.setsockopt(socket.SOL_SOCKET, socket.SO_RCVBUF, 128)
-    print('done')
-    while True:
-        time.sleep(10)
-
-
-
-if __name__ == '__main__':
-    sys.exit(main(sys.argv[1:]))
diff --git a/venv/lucifer/cmd/test/autotest_monkeypatcher.py b/venv/lucifer/cmd/test/autotest_monkeypatcher.py
deleted file mode 100644
index febbe49..0000000
--- a/venv/lucifer/cmd/test/autotest_monkeypatcher.py
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 2017 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-"""Monkeypatch autotest and import common.
-
-This is used for testing Autotest monkeypatching.
-"""
-
-from __future__ import absolute_import
-from __future__ import division
-from __future__ import print_function
-
-import sys
-
-import lucifer.autotest
-from lucifer import loglib
-
-
-def main(args):
-    """Main function
-
-    @param args: list of command line args
-    """
-    del args
-    loglib.configure_logging(name='autotest_monkeypatcher')
-
-    lucifer.autotest.monkeypatch()
-    from autotest_lib import common
-
-    print(common.__file__)
-    return 0
-
-
-if __name__ == '__main__':
-    sys.exit(main(sys.argv[1:]))
diff --git a/venv/lucifer/cmd/test/obtain_lease.py b/venv/lucifer/cmd/test/obtain_lease.py
deleted file mode 100644
index 373703e..0000000
--- a/venv/lucifer/cmd/test/obtain_lease.py
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 2017 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-"""Obtain a lease file.
-
-This is used for testing leasing.
-"""
-
-from __future__ import absolute_import
-from __future__ import division
-from __future__ import print_function
-
-import logging
-import sys
-
-from lucifer import loglib
-from lucifer import leasing
-
-logger = logging.getLogger(__name__)
-
-
-def main(args):
-    """Main function
-
-    @param args: list of command line args
-    """
-    loglib.configure_logging(name='obtain_lease')
-    with leasing.obtain_lease(args[0]) as path:
-        logger.debug('Obtained lease %s', path)
-        print('done')
-        raw_input()
-        logger.debug('Finishing successfully')
-    print('finish')
-
-
-if __name__ == '__main__':
-    sys.exit(main(sys.argv[1:]))