Best Python code snippet using slash
test_daemon.py
Source:test_daemon.py  
...311        self.assertFalse(result)312        mock_kill.assert_called_once_with(pid, 0)313        self.daemon.remove_pidfile.assert_called_once_with()314        self.assertTrue(self.error_method.called)315    def test_get_pid(self):316        # setup317        pid = 1234318        # test319        with mock.patch(320            "builtins.open",321            mock.mock_open(read_data=f"{pid}\n"),322            create=True,323        ) as m:324            result = self.daemon.get_pid()325        # assert326        self.assertEqual(result, pid)327        m.assert_called_once_with(self.pidfile, encoding="utf-8")328    def test_get_pid_ioerror(self):329        # setup330        handle = mock.MagicMock()331        handle.__enter__.side_effect = IOError()332        # test333        with mock.patch("builtins.open", mock.mock_open(), create=True) as m:334            result = self.daemon.get_pid()335        # assert336        self.assertIsNone(result)337        m.assert_called_once_with(self.pidfile, encoding="utf-8")338    def test_get_pid_valueerror(self):339        # setup340        pid = "not an integer"341        # test342        with mock.patch(343            "builtins.open",344            mock.mock_open(read_data=f"{pid}\n"),345            create=True,346        ) as m:347            result = self.daemon.get_pid()348        # assert349        self.assertIsNone(result)350        m.assert_called_once_with(self.pidfile, encoding="utf-8")351    def test_set_pid(self):352        # setup353        pid = "1234"354        # test355        with mock.patch("builtins.open", mock.mock_open(), create=True) as m:356            self.daemon.set_pid(pid)357        # assert358        m.assert_called_once_with(self.pidfile, "wt+", encoding="utf-8")359        handle = m()360        handle.write.assert_called_once_with(f"{pid}\n")361    def test_set_pid_int(self):...watcher.py
Source:watcher.py  
...32def my_get_time():33    dt = datetime.now()34    year, month, day, hour, minute = dt.year, dt.month, dt.day, dt.hour, dt.minute35    return year, month, day, hour, minute36def get_pid(name):37    try:38        sres = check_output(["pgrep","-f",name]).split()39    except:40        return []41    res = [int(i) for i in sres]42    return res43def end_program():44    pids = get_pid("extract_text.py") + get_pid("translate.py") + get_pid("extract_tweet.py") + get_pid("twitter_translate.py") + get_pid("launch.py") + get_pid("sentiment_classifier.py")45    print (pids)46    for pid in pids:47        os.system("kill -9 {}".format(pid))48def start_program():49    print(1)50    subprocess.Popen('bash twitter_translate.sh', shell=True)51    print(2)52    subprocess.Popen('bash translate.sh', shell=True)53    print(3)54    subprocess.Popen('bash extract_text.sh', shell=True)55    print(4)56    subprocess.Popen('bash extract_tweet.sh', shell=True)57    print(5)58    subprocess.Popen('bash sentiment.sh', shell=True)59    print(6)60    subprocess.Popen('bash topic_classifier.sh', shell=True)61def restart():62    end_program()63    time.sleep(3)64    start_program()65def get_status_line():66    line = ''67    if len(get_pid("extract_text.py"))==0:68        line += "Article extract error\n"69    if len(get_pid("translate.py"))==0:70        line += "Article translate error\n"71    if len(get_pid("extract_tweet.py"))==0:72        line += "Tweet extract error\n"73    if len(get_pid("twitter_translate.py"))==0:74        line += "Tweet translate error\n"75    if len(get_pid("launch.py"))==0:76        line += "Topic classification error\n"77    if len(get_pid("sentiment_classifier.py"))==0:78        line += "Sentiment classification error\n"79    if (line == ''):80        line = 'No error\n'81    else:82        msg = create_message(FROM_ADDRESS, TO_ADDRESS, SUBJECT, line)83        #send(FROM_ADDRESS, TO_ADDRESS, msg)84    year, month, day, hour, minute=my_get_time()85    date_info = "Date: {}/{} {}:{}\n".format(month, day, hour, minute)86    line = date_info + line87    return line88def write_status_to_log():89    status_line = get_status_line()90    with open(log_file, "a+") as f:91        f.write(status_line.strip()+'\n')...main.py
Source:main.py  
...28    e.set_vin("4" * 17)29    # print("VIN IS SET")30    # e.get_vin()31    e.set_pid("010C", (0x31,0x64))  # RPM32    print(e.get_pid("010C"))33    e.set_pid("010C", "1026")  # RPM34    print(e.get_pid("010C"))35    print("Determining Active PIDs")36    print(e.get_pid("0100"))37    print(e.get_pid("0120"))38    print(e.get_pid("0140"))39    print(e.get_pid("0160"))40    print(e.get_pid("0180"))41    print(e.get_pid("01A0"))42    print(e.get_pid("01C0"))43    print(e.get_pid("0900"))44    # e.set_pid("010D", "100")  # speed45    # e.set_pid("0105", "85")  # Coolant temp46    #47    # import time48    # from itertools import cycle49    #50    # x = np.arange(800)51    # y = np.sin(2 * np.pi * 0.7 * x / 90)52    # c = cycle((y * 10).astype(np.uint8) + 10)53    # try:54    #     while True:55    #         e.set_pid("010D", next(c))56    #         time.sleep(0.1)57    # except Exception as e:...Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!
