Best Python code snippet using autotest_python
test_ehabi_elf.py
Source: test_ehabi_elf.py
...28 self.assertTrue(elf.has_ehabi_info())29 infos = elf.get_ehabi_infos()30 self.assertEqual(1, len(infos))31 info = infos[0]32 self.assertIsInstance(info.get_entry(0), EHABIEntry)33 self.assertEqual(info.get_entry(0).function_offset, 0x34610)34 self.assertEqual(info.get_entry(0).eh_table_offset, 0x69544)35 self.assertEqual(info.get_entry(0).bytecode_array, [0x97, 0x41, 0x84, 0x0d, 0xb0, 0xb0])36 self.assertIsInstance(info.get_entry(7), CannotUnwindEHABIEntry)37 self.assertEqual(info.get_entry(7).function_offset, 0x346f8)38 self.assertIsInstance(info.get_entry(8), EHABIEntry)39 self.assertEqual(info.get_entry(8).personality, 0)40 self.assertEqual(info.get_entry(8).function_offset, 0x3473c)41 self.assertEqual(info.get_entry(8).bytecode_array, [0x97, 0x84, 0x08])42 self.assertIsInstance(info.get_entry(9), GenericEHABIEntry)43 self.assertEqual(info.get_entry(9).function_offset, 0x3477c)44 self.assertEqual(info.get_entry(9).personality, 0x31a30)45 for i in range(info.num_entry()):46 self.assertNotIsInstance(info.get_entry(i), CorruptEHABIEntry)47 def test_parse_executable(self):48 fname = os.path.join('test', 'testfiles_for_unittests', 'arm_exidx_test.elf')49 with open(fname, 'rb') as f:50 elf = ELFFile(f)51 self.assertTrue(elf.has_ehabi_info())52 infos = elf.get_ehabi_infos()53 self.assertEqual(1, len(infos))54 info = infos[0]55 self.assertIsInstance(info.get_entry(0), EHABIEntry)56 self.assertEqual(info.get_entry(0).function_offset, 0x4f50)57 self.assertEqual(info.get_entry(0).eh_table_offset, 0x22864)58 self.assertEqual(info.get_entry(0).bytecode_array, [0x97, 0x41, 0x84, 0x0d, 0xb0, 0xb0])59 self.assertIsInstance(info.get_entry(7), CannotUnwindEHABIEntry)60 self.assertEqual(info.get_entry(7).function_offset, 0x5040)61 self.assertIsInstance(info.get_entry(8), GenericEHABIEntry)62 self.assertEqual(info.get_entry(8).personality, 0x15d21)63 self.assertIsInstance(info.get_entry(9), EHABIEntry)64 self.assertEqual(info.get_entry(9).function_offset, 0x5144)65 self.assertEqual(info.get_entry(9).personality, 0)66 self.assertEqual(info.get_entry(9).bytecode_array, [0x97, 0x84, 0x08])67 for i in range(info.num_entry()):68 self.assertNotIsInstance(info.get_entry(i), CorruptEHABIEntry)69if __name__ == '__main__':...
views.py
Source: views.py
...17 return render(request, "encyclopedia/index.html", {18 "entries": util.list_entries()19 })20def view(request, title):21 if get_entry(title) is not None:22 markdown = Markdown()23 entry_view = get_entry(title)24 return render(request, "encyclopedia/view.html", {25 "title": title,26 "entry_available": True,27 "get_entry": markdown.convert(entry_view),28 })29 else:30 return render(request, "encyclopedia/view.html",{31 "title": title,32 "entry_available": False,33 })34def search(request):35 value = request.GET.get('q', '')36 markdown = Markdown()37 if (get_entry(value)) is not None:38 entry_view = util.get_entry(value)39 return render(request, "encyclopedia/search.html", {40 "title": value,41 "get_entry": markdown.convert(entry_view),42 })43 else:44 substring = []45 for entry in util.list_entries():46 if value.upper() in entry.upper():47 substring.append(entry)48 if substring:49 return render(request, "encyclopedia/index.html", {50 "entries": substring51 })52 else:53 return render(request, "encyclopedia/no_search_result.html", {54 "value": value55 })56def new_page(request):57 if request.method == "POST":58 form = NewEntryForm(request.POST)59 if form.is_valid():60 title = form.cleaned_data["title"]61 content = form.cleaned_data["content"]62 edit = form.cleaned_data["edit"]63 if get_entry(title) is None or edit:64 util.save_entry(title, content)65 markdown = Markdown()66 entry_view = util.get_entry(title)67 return render(request, "encyclopedia/view.html", {68 "title": title,69 "get_entry": markdown.convert(entry_view),70 "entry_available": get_entry(title) != None,71 })72 else:73 return render(request, "encyclopedia/existing_page_error.html", {74 "title": title,75 "content": content,76 })77 else:78 return render(request, "encyclopedia/new_page.html", {79 "form": NewEntryForm()80 })81def edit(request, title):82 page = get_entry(title)83 if page is None:84 return HttpResponseRedirect(reverse("view", {85 "entry_available": False,86 }))87 else:88 initial_dict = {89 "title": title,90 "content": get_entry(title),91 "edit": True,92 }93 form = NewEntryForm(initial=initial_dict)94 return render(request, "encyclopedia/new_page.html", {95 "form": form,96 })97def random_select(request):98 entries = util.list_entries()99 rand_entry = random.choice(entries)100 markdown = Markdown()101 entry_view = util.get_entry(rand_entry)102 return render(request, "encyclopedia/view.html", {103 "title": rand_entry,104 "entry_available": True,105 "get_entry": markdown.convert(entry_view),...
testing_of_sql_functions.py
Source: testing_of_sql_functions.py
...5db = Database("tests/testing_data/testing_db.db")6class TestSqlite(unittest.TestCase):7 def test_get_user(self):8 self.assertEqual(type(db.get_users()), list)9 def test_get_entry(self):10 tg_id = choice((1481133443, 2672748391, 8533143892,11 "9769996101", "4445777978"))12 self.assertEqual(type(db.get_entry("users", "tg_id", tg_id)), tuple)13 self.assertEqual(len(db.get_entry("users", "tg_id", tg_id)), 3)14 self.assertEqual(type(db.get_entry("users", "tg_id", tg_id)[0]), int)15 self.assertEqual(type(db.get_entry("users", "tg_id", tg_id)[1]), str)16 self.assertEqual(type(db.get_entry("users", "tg_id", tg_id)[2]), int)17 self.assertEqual(db.get_entry("users", "tg_id", "464696049")[0], 1)18 self.assertEqual(db.get_entry("users", "tg_id", 464696049)[0], 1)19 self.assertFalse(db.get_entry("users", "tg_id", 464696049)[2])20 self.assertTrue(db.get_entry("users", "tg_id", "9769996101")[2])21 def test_user_exists(self):22 self.assertEqual(type(db.user_exists(34)), bool)23 self.assertTrue(db.user_exists("464696049"))24 self.assertFalse(db.user_exists(12))25 def test_get_subscriptions(self):26 subs = db.get_subscriptions(True)27 not_subs = db.get_subscriptions(False)28 self.assertEqual(type(subs), list)29 self.assertEqual(type(not_subs), list)30 self.assertEqual(type(subs[0]), tuple)31 self.assertEqual(type(not_subs[0]), tuple)32 self.assertEqual(len(subs[0]), 3)33 self.assertEqual(len(not_subs[0]), 3)34 self.assertEqual(len(subs[1]), 3)35 self.assertEqual(len(not_subs[1]), 3)36 self.assertGreaterEqual(len(not_subs), 2)37 self.assertNotIn(subs, not_subs)38 self.assertNotIn(not_subs, subs)39 def test_add_user_and_delete_entry(self):40 rand_id = randint(100, 10000000000)41 db.add_user(rand_id, True)42 self.assertTrue(db.user_exists(rand_id))43 db.delete_entry("users", "tg_id", rand_id)44 self.assertFalse(db.user_exists(rand_id))45 def test_update_user_subscription(self):46 db.update_user_subscription(5454054520, True)47 self.assertIsInstance(db.update_user_subscription(5454054520, False),48 Cursor)49 self.assertTrue(db.get_entry("users", "tg_id", 5454054520))50 def test_add_hotel(self):51 # hotels = {5: "first test hotel", 10: "second test motel",52 # 17: "third test guest house", 15: "fourth test hotel"}53 # for telegram_id, hotel_name in hotels:54 # self.assertIsInstance(db.add_hotel(telegram_id,55 # hotel_name,56 # 13,57 # "СоÑи, ТеÑÑÐ¾Ð²Ð°Ñ 404"), Cursor)58 # self.assertEqual(db.get_entry("hotels", "user_id",59 # db.get_entry())[2],60 # random_hotel_name)61 pass62 def test_add_seasons_info(self):63 pass64if __name__ == '__main__':...
provision.py
Source: provision.py
1from datetime import datetime2import datetime3def get_entry(category, filename, name, years, body=None):4 date = datetime.datetime.now() - datetime.timedelta(days=365*years)5 gitdate = datetime_to_git_string(date)6 path = '{}/{}'.format(category, filename)7 with open(path, 'w') as f:8 f.write(name)9 f.flush()10 f.close()11 print 'git add {}'.format(path)12 print 'GIT_AUTHOR_DATE="{}" GIT_COMMITTER_DATE="{}" git commit {} -m \"Started using {}\"'.format(gitdate, gitdate, path, name)13def datetime_to_git_string(dt):14 return datetime.datetime.strftime(dt, '%a %b %d %H:%M:%S %Y +0800')15#print get_entry('webapp', 'django-rest-framework', 'Django Rest Framework', 2)16#print get_entry('webapp', 'django', 'Django', 5)17#get_entry('webapp', 'python', 'Python', 5)18#get_entry('webapp', 'flask', 'Flask', 2)19#get_entry('webapp', 'front-end', 'Front End Development', 17)20#get_entry('webapp', 'html', 'HTML/HTML5', 15)21#get_entry('webapp', 'javascript', 'JavaScript/ES6', 15)22#get_entry('webapp', 'angular', 'Angular', 2)23#get_entry('webapp', 'jquery', 'jQuery', 5)24#get_entry('webapp', 'ajax', 'AJAX', 5)25#get_entry('webapp', 'bootstrap', 'Bootstrap 3', 2)26#get_entry('webapp', 'websockets', 'Web Sockets', 1)27get_entry('software', 'rest', 'REST APIs', 3)28get_entry('software', 'python', 'Python', 5)29get_entry('other', 'dotnet', 'Microsoft .NET (C#)', 10)30get_entry('databases', 'mysql', 'MySQL', 10)31get_entry('databases', 'postgres', 'PostgreSQL', 7)32get_entry('databases', 'mssql', 'Microsoft SQL Server', 10)33get_entry('databases', 'oracle', 'Oracle', 5)34get_entry('testing', 'unittest', 'Python unittest', 2)35get_entry('testing', 'pytest', 'PyTest', 1)36get_entry('testing', 'karma', 'Karma', 1)37get_entry('testing', 'jasmine', 'Jasmine', 1)38get_entry('testing', 'selenium', 'Selenium', 1)39get_entry('testing', 'jenkins', 'Jenkins', 1)40get_entry('misc', 'vim', 'VI/VIM', 5)41get_entry('misc', 'bash', 'bash', 10)42get_entry('misc', 'zsh', 'Zsh', 2)43get_entry('misc', 'tmux', 'Tmux/screen', 4)44get_entry('misc', 'orm', 'ORM', 6)45get_entry('misc', 'git', 'GIT', 3)46get_entry('misc', 'heroku', 'Heroku', 3)47get_entry('misc', 'aws', 'Amazon (EC2, S3, Boto, Elastic Beanstalk, Route 53, RDS, Lambda)', 2)...
Check out the latest blogs from LambdaTest on this topic:
Before we discuss Scala testing, let us understand the fundamentals of Scala and how this programming language is a preferred choice for your development requirements.The popularity and usage of Scala are rapidly rising, evident by the ever-increasing open positions for Scala developers.
So, now that the first installment of this two fold article has been published (hence you might have an idea of what Agile Testing is not in my opinion), I’ve started feeling the pressure to explain what Agile Testing actually means to me.
Did you know that according to Statista, the number of smartphone users will reach 18.22 billion by 2025? Let’s face it, digital transformation is skyrocketing and will continue to do so. This swamps the mobile app development market with various options and gives rise to the need for the best mobile app testing tools
As a developer, checking the cross browser compatibility of your CSS properties is of utmost importance when building your website. I have often found myself excited to use a CSS feature only to discover that it’s still not supported on all browsers. Even if it is supported, the feature might be experimental and not work consistently across all browsers. Ask any front-end developer about using a CSS feature whose support is still in the experimental phase in most prominent web browsers. ????
The count of mobile users is on a steep rise. According to the research, by 2025, it is expected to reach 7.49 billion users worldwide. 70% of all US digital media time comes from mobile apps, and to your surprise, the average smartphone owner uses ten apps per day and 30 apps each month.
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!!