Best Python code snippet using avocado_python
test_utils_ssh.py
Source:test_utils_ssh.py
...19 self.assertIn(" -l ", ssh_cmd)20 self.assertIn(" -i ", ssh_cmd)21 def test_master_connection_key(self):22 session = ssh.Session('hostname', user='user', key='/path/to/key')23 master_connection = session._master_connection()24 self.assertIn(" -o 'PubkeyAuthentication=yes'", master_connection)25 def test_master_connection_no_key(self):26 session = ssh.Session('hostname', user='user')27 master_connection = session._master_connection()28 self.assertIn(" -o 'PubkeyAuthentication=no'", master_connection)29 def test_master_connection_password(self):30 session = ssh.Session('hostname', user='user', password='PASSWORD')31 master_connection = session._master_connection()32 self.assertIn(" -o 'PasswordAuthentication=yes'", master_connection)33 def test_master_connection_no_password(self):34 session = ssh.Session('hostname', user='user')35 master_connection = session._master_connection()36 self.assertIn(" -o 'PasswordAuthentication=no'", master_connection)37 def test_master_connection_ssh_askpass_script(self):38 password = 'PASSWORD'39 session = ssh.Session('hostname', user='user', password=password)40 ssh_askpass_path = session._create_ssh_askpass()41 ssh_askpass_password = process.run(ssh_askpass_path)42 os.unlink(ssh_askpass_path)43 self.assertEqual(ssh_askpass_password.stdout_text.rstrip(), password)44 def test_no_ssh_client_binary(self):45 session = ssh.Session('hostname')46 with unittest.mock.patch('avocado.utils.ssh.SSH_CLIENT_BINARY', None):47 self.assertFalse(session.connect())48if __name__ == '__main__':49 unittest.main()
test_ssh.py
Source:test_ssh.py
...19 self.assertIn(" -l ", ssh_cmd)20 self.assertIn(" -i ", ssh_cmd)21 def test_master_connection_key(self):22 session = ssh.Session("hostname", user="user", key="/path/to/key")23 master_connection = session._master_connection()24 self.assertIn(" -o 'PubkeyAuthentication=yes'", master_connection)25 def test_master_connection_no_key(self):26 session = ssh.Session("hostname", user="user")27 master_connection = session._master_connection()28 self.assertIn(" -o 'PubkeyAuthentication=no'", master_connection)29 def test_master_connection_password(self):30 session = ssh.Session("hostname", user="user", password="PASSWORD")31 master_connection = session._master_connection()32 self.assertIn(" -o 'PasswordAuthentication=yes'", master_connection)33 def test_master_connection_no_password(self):34 session = ssh.Session("hostname", user="user")35 master_connection = session._master_connection()36 self.assertIn(" -o 'PasswordAuthentication=no'", master_connection)37 def test_master_connection_ssh_askpass_script(self):38 password = "PASSWORD"39 session = ssh.Session("hostname", user="user", password=password)40 ssh_askpass_path = session._create_ssh_askpass()41 ssh_askpass_password = process.run(ssh_askpass_path)42 os.unlink(ssh_askpass_path)43 self.assertEqual(ssh_askpass_password.stdout_text.rstrip(), password)44 def test_no_ssh_client_binary(self):45 session = ssh.Session("hostname")46 with unittest.mock.patch("avocado.utils.ssh.SSH_CLIENT_BINARY", None):47 self.assertFalse(session.connect())48if __name__ == "__main__":49 unittest.main()
ScrimChannelConnection.py
Source:ScrimChannelConnection.py
1__version__ = "0.1"2__author__ = "Eetu Asikainen"3from typing import Union, Optional4from sqlalchemy.orm import subqueryload5from Bot.Core.BotDependencyInjector import BotDependencyInjector6from Bot.DataClasses.ScrimChannel import ScrimChannel7from Bot.DataClasses.VoiceChannel import VoiceChannel8from Database.DatabaseConnections.ConnectionBase import ConnectionBase9def _get_from_id(channel_id, session):10 query = session.query(ScrimChannel).outerjoin(ScrimChannel.voice_channels) \11 .filter(ScrimChannel.channel_id == channel_id).options(subqueryload(ScrimChannel.voice_channels))12 return query13@BotDependencyInjector.singleton14class ScrimChannelConnection(ConnectionBase[ScrimChannel]):15 def get_channel(self, channel_id: int) -> ScrimChannel:16 with self._master_connection.get_session() as session:17 query = _get_from_id(channel_id, session)18 channel = query.one()19 return channel20 def add_channel(self, channel: ScrimChannel) -> ScrimChannel:21 with self._master_connection.get_session() as session:22 session.add(channel)23 return channel24 def exists_text(self, channel_id: int) -> Optional[ScrimChannel]:25 with self._master_connection.get_session() as session:26 candidate = _get_from_id(channel_id, session).first()27 return candidate28 def exists_voice(self, channel_id: int) -> Optional[ScrimChannel]:29 with self._master_connection.get_session() as session:30 return session.query(ScrimChannel).join(ScrimChannel.voice_channels)\31 .filter(VoiceChannel.channel_id == channel_id)\...
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!!