mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
728 B
35 lines
728 B
7 years ago
|
# -*- coding: utf-8 -*-
|
||
|
#
|
||
|
|
||
|
import sys
|
||
|
import os
|
||
|
from django.test import TestCase
|
||
|
|
||
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "jumpserver.settings")
|
||
|
from ops.models import AdHoc, AdHocData
|
||
|
from ops.utils import run_adhoc
|
||
|
|
||
|
|
||
|
class TestRunAdHoc(TestCase):
|
||
|
def setUp(self):
|
||
|
adhoc = AdHoc(name="Test run adhoc")
|
||
|
adhoc.save()
|
||
|
|
||
|
self.data = AdHocData(subject=adhoc, run_as_admin=True, pattern='all')
|
||
|
self.data.tasks = [
|
||
|
{'name': 'run ls', 'action': {'module': 'shell', 'args': 'ls'}},
|
||
|
{'name': 'echo ', 'action': {'module': 'shell', 'args': 'echo 123'}},
|
||
|
]
|
||
|
self.data.hosts = [
|
||
|
"testserver"
|
||
|
]
|
||
|
|
||
|
def test_run(self):
|
||
|
pass
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|