Ejemplo n.º 1
0
def build_contract():
    de.ACTION()
    de.FOCUS_VSCODE.type(
                    de.FOCUS_VSCODE, "b", sikuli.Key.CTRL + sikuli.Key.SHIFT)
    print("Waiting for terminal/eosio-cpp_OK1")
    de.wait_image("terminal/eosio-cpp_OK1", seconds=20, score=0.85)
    de.CUT()
Ejemplo n.º 2
0
def init(start_point, group=1):
    de.ACTION()
    if not sikuli.Region(de.X, de.Y, 30, 30).exists(de.get_image(
                                                        "assorted/vsc_icon")):
        de.exit("The VSCode window is not in position")
    de.kill_ffmpeg()
    el.ok_keyboard()
    el.hide_terminal_panel()
    
    if not de.exists("title_bar/start_point", de.REGION_TITLE_BAR):
        de.save_all()
        de.open_folder(start_point, "assorted/vsc_icon")

    el.hide_terminal_panel()
    el.hide_side_bar()
    el.close_all_editors()    
    
    narration = Edit("narration", group)
    if not narration.focus():
        de.open_file(de.NARRATION_FILE, "file_selection/narration")

    narration.type("", "w")
    print("Returning narration editor in group {}.".format(group))
    de.CUT()
    return narration
Ejemplo n.º 3
0
def init_part(start_point, contract_name, group=1):
    de.ACTION()
    if not sikuli.Region(de.X, de.Y, 30, 30).exists(de.get_image(
                                                        "assorted/vsc_icon")):
        de.exit("The VSCode window is not in position")
    de.kill_ffmpeg()
    el.ok_keyboard()
    el.hide_terminal_panel()

    de.save_all()
    de.copy_recursive_overwrite(
                start_point, os.path.join(de.CONTRACT_WORKSPACE, contract_name))

    el.hide_terminal_panel()
    el.hide_side_bar()
    el.close_all_editors()
    
    narration = Edit("narration", 1)
    if not narration.focus():
        de.open_file(de.NARRATION_FILE, "file_selection/narration")

    narration.type("", "w")
    print("Returning narration editor in group {}.".format(group))
    de.CUT()
    return narration
Ejemplo n.º 4
0
 def move_left(self):
     de.ACTION(" <= " + self.name)
     self.focus()
     de.FOCUS_VSCODE.type(sikuli.Key.LEFT, sikuli.Key.CTRL + sikuli.Key.ALT)
     self.group = 1
     de.wait(0.5)
     de.CUT()
Ejemplo n.º 5
0
 def __init__(self, name, group=1):
     de.ACTION()
     print("{} in group {}".format(name, group))
     self.name = name
     self.group = self.limits(group)
     de.focus_group(group)
     de.CUT()
Ejemplo n.º 6
0
 def scroll_down(self, count):
     de.ACTION(" <= Terminal")
     de.REGION_VSCODE.type(sikuli.Key.HOME, sikuli.Key.CTRL)
     for i in range(0, count):
         de.REGION_VSCODE.type(sikuli.Key.DOWN, sikuli.Key.CTRL)
         de.sleep(0.5)
     de.CUT()
Ejemplo n.º 7
0
 def go_to_line(self, line):
     de.ACTION(" <= " + self.name)
     self.focus()
     de.FOCUS_VSCODE.type(de.FOCUS_VSCODE, "g", sikuli.Key.CTRL)
     de.FOCUS_VSCODE.type(de.FOCUS_VSCODE, str(line) + "\n")
     de.sleep(0.5)
     de.CUT() 
Ejemplo n.º 8
0
 def move_right(self):
     de.ACTION(" <= " + self.name)
     region = de.FOCUS_VSCODE
     self.focus()
     de.FOCUS_VSCODE.type(sikuli.Key.RIGHT, sikuli.Key.CTRL + sikuli.Key.ALT)
     self.group = 2
     de.wait(0.5)
     de.CUT()
Ejemplo n.º 9
0
 def type(self, text, new_line=True):
     de.ACTION(" <= Terminal")
     self.show()
     if new_line:
         text = text + "\n"
     de.REGION_VSCODE.type(de.get_image("terminal/TERMINAL"), text)
     de.FOCUS_VSCODE.hover()
     de.CUT()
Ejemplo n.º 10
0
 def focus_group(self, group=None):
     de.ACTION(" <= " + self.name)
     if not group:
         group = self.group
     
     self.group = self.limits(group)
     de.FOCUS_VSCODE.type(de.FOCUS_VSCODE, str(self.group), sikuli.Key.CTRL)
     de.CUT()
Ejemplo n.º 11
0
 def new(self, maximize=False):
     de.ACTION(" <= Terminal")
     el.new_bash_terminal()
     if not maximize:
         self.set_hight()
     else:
         self.maximize()
     de.CUT()
Ejemplo n.º 12
0
 def scroll_down(self, count):
     de.ACTION(" <= " + self.name)
     if count:
         self.focus()
         for i in range(0, count):
             de.FOCUS_VSCODE.type(
                         de.FOCUS_VSCODE, sikuli.Key.DOWN, sikuli.Key.CTRL)
             de.sleep(0.5)
     de.CUT()
Ejemplo n.º 13
0
 def minimize(self):
     de.ACTION(" <= Terminal")
     if not self.is_shown():
         return
     button = de.REGION_VSCODE.exists(de.get_image("terminal/minimize"))
     if button and button.getScore() >= 0.95:
         button.click()
         de.REGION_VSCODE.type(
                             de.get_image("terminal/TERMINAL"), 
                             sikuli.Key.HOME, sikuli.Key.CTRL)
     de.CUT()
Ejemplo n.º 14
0
def new_text_file(path, group=1):
    de.ACTION()
    region = de.FOCUS_VSCODE
    region.type(region, "n", sikuli.Key.CTRL)
    region.type(region, "s", sikuli.Key.CTRL)
    region.type(region, path)
    de.REGION_VSCODE.find(de.get_image("open_folder/save")).click()
    file_name = os.path.basename(path)
    editor = Edit(file_name, group)
    de.CUT()
    return editor
Ejemplo n.º 15
0
 def __init__(
                 self, PS=None, region=de.REGION_VSCODE, 
                 seconds=3, wait=0, score=0, group=1):
     SikuliObject.__init__(self, "EOSIDE:Install", group)
     de.ACTION(self.name)
     self.detected = el.show_shortcut_view(
                                         "install/installed",
                                         "i",
                                         sikuli.Key.CTRL + sikuli.Key.ALT,
                                         "Show EOSIDE install view",
                                         PS, region, seconds, wait, score)
     de.CUT()
Ejemplo n.º 16
0
def run_test(test_name, scroll_count):
    de.ACTION()
    
    terminal = Terminal()
    terminal.new(maximize=True)
    terminal.type(" python3 tests/{}".format(test_name))
    de.wait_image("terminal/end", seconds=25, score=0.85)

    de.wait(2)
    terminal.scroll_down(scroll_count)

    de.CUT()
    return terminal
Ejemplo n.º 17
0
    def focus(self, group=None):
        de.ACTION(" <= " + self.name)
        self.focus_group(group)
        result = True

        if not de.exists("title_bar/{}".format(self.name)):
            region = de.FOCUS_VSCODE
            region.type(region, "p", sikuli.Key.CTRL)
            region.type(region, self.name + "\n")
            if de.exists("assorted/no_results_found", REGION_CTRL_P_SELECTION):
                print "No results found!"
                result = False
        de.CUT()
        return result
Ejemplo n.º 18
0
def make_contract(arguments="", clear=True):
    de.ACTION()

    terminal = Terminal()
    terminal.new(maximize=True)
    terminal.type(" cd build")
    de.wait(1)
    if clear:
        terminal.type(" rm -r *")
        de.wait(1)
    
    terminal.type(" cmake {} ..".format(arguments))
    de.wait(2)
    terminal.type(" make")
    print("Waiting for terminal/eosio-cpp_OK1")
    de.wait_image("terminal/eosio-cpp_OK1", de.REGION_TERMINAL, seconds=20, score=0.85)

    de.CUT()
    return terminal
Ejemplo n.º 19
0
def show_file(file_name, dir_name, scroll_count=0):
    de.ACTION()

    el.show_explorer()
    de.focus_group(1) 
    if not de.exists(
            "explorer/{}".format(file_name), de.REGION_SIDE_BAR, score=0.85):
        de.find("explorer/{}".format(dir_name), de.REGION_SIDE_BAR).click()
        de.hover(de.FOCUS_VSCODE)
    
    de.wait_image(
        "explorer/{}".format(file_name), de.REGION_SIDE_BAR, score=0.85).click()

    el.hide_side_bar()
    editor = Edit(file_name, 1)
    if scroll_count:
        editor.go_top()
        editor.scroll_down(count=scroll_count)

    de.CUT()
    return editor
Ejemplo n.º 20
0
    def type(self, text, action="a", end_of_file=True):
        if action == "w":
            msg = "write"
        else:
            if end_of_file:
                msg = "append"
            else:
                msg = "continue"
        de.ACTION(" {} in group {}".format(self.name, self.group))
        print(text.decode('utf-8','ignore').encode("utf-8"))

        self.focus()
        if action == "w":
            de.REGION_VSCODE.type("a", sikuli.Key.CTRL)
            de.REGION_VSCODE.type(sikuli.Key.BACKSPACE)

        if end_of_file:
            de.REGION_VSCODE.type(sikuli.Key.END, sikuli.Key.CTRL)
        else:
            de.REGION_VSCODE.type("k", sikuli.Key.CTRL)
            de.REGION_VSCODE.type("q", sikuli.Key.CTRL)

        de.REGION_VSCODE.type(text)
        de.CUT()        
Ejemplo n.º 21
0
 def show(self):
     de.ACTION(" <= Terminal")
     if not self.is_shown():
         el.show_terminal()
     de.CUT()
Ejemplo n.º 22
0
 def hide(self):
     de.ACTION(" <= Terminal")
     el.hide_terminal_panel()
     de.CUT()
Ejemplo n.º 23
0
def show_and_run_test(test_name, scroll_script_count, scroll_result_count):
    de.ACTION()
    show_file(test_name, "tests", scroll_script_count)
    terminal = run_test(test_name, scroll_result_count)
    de.CUT()
    return terminal
Ejemplo n.º 24
0
 def set_width(self):
     de.ACTION()
     ## Move column border
     de.drag_drop(
         de.find("column_border1").offset(3, 0), de.REGION_COLUMN_BORDER)
     de.CUT()
Ejemplo n.º 25
0
 def set_hight(self):
     de.ACTION(" <= Terminal")
     top_border = de.exists("terminal/TERMINAL")
     if top_border:
         de.drag_drop(top_border.offset(0, -15), de.REGION_COLUMN_BORDER)
     de.CUT()
Ejemplo n.º 26
0
 def go_bottom(self):
     de.ACTION(" <= " + self.name)
     self.focus()
     de.FOCUS_VSCODE.type(de.FOCUS_VSCODE, sikuli.Key.END, sikuli.Key.CTRL)
     de.sleep(0.5)
     de.CUT()
Ejemplo n.º 27
0
 def __init__(self, name, group=1):
     de.ACTION("Edit")
     SikuliObject.__init__(self, name, group)
     de.CUT()
Ejemplo n.º 28
0
 def __init__(self):
     de.ACTION("Terminal")
     de.CUT()