How to use test_file_request method in Molotov

Best Python code snippet using molotov_python

test_file_request.py

Source:test_file_request.py Github

copy

Full Screen

1import json2from datetime import datetime3import pytest4import pytz5from boxsdk.config import API6from boxsdk.object.folder import Folder7from boxsdk.object.file_request import FileRequest8from boxsdk.object.file_request import StatusState9def test_get(test_file_request, mock_box_session):10 expected_url = f'{API.BASE_API_URL}/file_requests/{test_file_request.object_id}'11 mock_box_session.get.return_value.json.return_value = {12 'type': test_file_request.object_type,13 'id': test_file_request.object_id,14 'title': 'File Request'15 }16 file_request = test_file_request.get()17 mock_box_session.get.assert_called_once_with(expected_url, headers=None, params=None)18 assert isinstance(file_request, FileRequest)19 assert file_request['type'] == file_request.object_type20 assert file_request['id'] == file_request.object_id21 assert file_request['title'] == 'File Request'22def test_update(test_file_request, mock_box_session):23 new_title = 'New File Request Title'24 new_status = StatusState.INACTIVE25 expected_url = f'{API.BASE_API_URL}/file_requests/{test_file_request.object_id}'26 mock_box_session.put.return_value.json.return_value = {27 'type': test_file_request.object_type,28 'id': test_file_request.object_id,29 'title': new_title,30 'status': new_status,31 }32 data = {33 'title': new_title,34 'status': StatusState.INACTIVE,35 }36 file_request = test_file_request.update_info(data=data)37 mock_box_session.put.assert_called_once_with(expected_url, data=json.dumps(data), headers=None, params=None)38 assert isinstance(file_request, FileRequest)39 assert file_request['type'] == test_file_request.object_type40 assert file_request['id'] == test_file_request.object_id41 assert file_request['title'] == new_title42 assert file_request['status'] == StatusState.INACTIVE43@pytest.mark.parametrize('expires_at', [44 '2019-07-01T22:02:24+14:00',45 datetime(2019, 7, 1, 22, 2, 24, tzinfo=pytz.timezone('US/Alaska'))46])47def test_copy(test_file_request, mock_box_session, expires_at):48 new_folder_id = '100'49 expected_url = f'{API.BASE_API_URL}/file_requests/{test_file_request.object_id}/copy'50 expected_expires_at = '2019-07-01T22:02:24+14:00'51 mock_box_session.post.return_value.json.return_value = {52 'type': test_file_request.object_type,53 'id': test_file_request.object_id,54 'title': 'File Request Copied',55 'folder': {56 'type': 'folder',57 'id': new_folder_id,58 },59 'expires_at': expected_expires_at,60 }61 new_title = 'File Request Copied'62 new_folder = Folder(mock_box_session, object_id=new_folder_id)63 file_request = test_file_request.copy(title=new_title, folder=new_folder, expires_at=expires_at)64 data = {65 'folder': {66 'id': new_folder_id,67 'type': 'folder',68 },69 'title': new_title,70 'expires_at': expected_expires_at,71 }72 mock_box_session.post.assert_called_once_with(expected_url, data=json.dumps(data))73 assert isinstance(file_request, FileRequest)74 assert file_request['type'] == test_file_request.object_type75 assert file_request['title'] == 'File Request Copied'76 assert file_request['folder']['id'] == '100'77 assert file_request['folder']['type'] == 'folder'78def test_delete(test_file_request, mock_box_session):79 expected_url = f'{API.BASE_API_URL}/file_requests/{test_file_request.object_id}'80 test_file_request.delete()...

Full Screen

Full Screen

test_request.py

Source:test_request.py Github

copy

Full Screen

...49 assert request.charset == 'UTF-8'50 assert await request.body() == b'foobar'51 assert await request.text() == 'foobar'52@pytest.mark.asyncio53async def test_file_request():54 with tempfile.NamedTemporaryFile(suffix='.txt') as f:55 f.write(b'foobar')56 f.flush()57 request = Request(file=f.name)58 assert request.content_type == 'text/plain'59 assert await request.body() == b'foobar'60 assert await request.text() == 'foobar'61@pytest.mark.asyncio62async def test_multipart_file_request():63 request = Request(file=File('foo.txt', 'text/plain', b'foobar'))64 assert request.content_type == 'text/plain'65 assert await request.body() == b'foobar'66 assert await request.text() == 'foobar'67def test_cookies():...

Full Screen

Full Screen

test_node.py

Source:test_node.py Github

copy

Full Screen

...18 node0.send_message("TEST MESSAGE", reciever=node1.id)19def test_files_add():20 global fhash21 fhash = node1.addfile("LICENSE")22def test_file_request():23 node0.requestFile(fhash)24 print(node0.file_manager.getallfiles())25 assert len(node0.requested) == 126 assert len(node1.msgs.keys()) == 227node0.stop()...

Full Screen

Full Screen

Automation Testing Tutorials

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.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run Molotov automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful