-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CVAT_server. Test for "Project updated time". #3953
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1349,6 +1349,7 @@ def test_api_v1_projects_delete_label(self): | |
}] | ||
} | ||
self._check_api_v1_project(data) | ||
|
||
class ProjectListOfTasksAPITestCase(APITestCase): | ||
def setUp(self): | ||
self.client = APIClient() | ||
|
@@ -1395,6 +1396,83 @@ def test_api_v1_projects_id_tasks_no_auth(self): | |
response = self._run_api_v1_projects_id_tasks(None, project.id) | ||
self.assertEqual(response.status_code, status.HTTP_401_UNAUTHORIZED) | ||
|
||
class ProjectExportAPITestCase(APITestCase): | ||
def setUp(self): | ||
self.client = APIClient() | ||
|
||
@classmethod | ||
def setUpTestData(cls): | ||
create_db_users(cls) | ||
project_data = { | ||
"name": "Project for check tasks in a xml", | ||
"owner": cls.admin, | ||
"labels": [{ | ||
"name": "car" | ||
}] | ||
} | ||
|
||
db_project = create_db_project(project_data) | ||
create_dummy_db_tasks(cls, db_project) | ||
cls.projects = db_project | ||
|
||
def _run_api_v1_project_id_export(self, pid, user, annotation_format=""): | ||
with ForceLogin(user, self.client): | ||
response = self.client.get( | ||
'/api/v1/projects/{}/annotations?format={}'.format(pid, annotation_format), | ||
format="json") | ||
return response | ||
|
||
def _run_api_v1_tasks_id_delete(self, tid, user): | ||
with ForceLogin(user, self.client): | ||
response = self.client.delete('/api/v1/tasks/{}'.format(tid), format="json") | ||
return response | ||
|
||
def _get_tasks_count(self, project): | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I will recommend delete the function and use the code as is. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixed. |
||
tasks_id = [task.id for task in project.tasks.all()] | ||
return tasks_id | ||
|
||
def _check_tasks_count(self, project, expected_result): | ||
tasks_id = self._get_tasks_count(project) | ||
self.assertEqual(len(tasks_id), expected_result) | ||
|
||
def _check_xml(self, pid, user, expected_result): | ||
annotation_format = "CVAT for images 1.1" | ||
response = self._run_api_v1_project_id_export(pid, user, annotation_format) | ||
self.assertEqual(response.status_code, status.HTTP_202_ACCEPTED) | ||
|
||
response = self._run_api_v1_project_id_export(pid, user, annotation_format) | ||
self.assertEqual(response.status_code, status.HTTP_201_CREATED) | ||
|
||
annotation_format = "CVAT for images 1.1&action=download" | ||
response = self._run_api_v1_project_id_export(pid, user, annotation_format) | ||
self.assertEqual(response.status_code, status.HTTP_200_OK) | ||
|
||
content = io.BytesIO(b"".join(response.streaming_content)) | ||
content.seek(0) | ||
|
||
with tempfile.TemporaryDirectory() as tmp_dir: | ||
zipfile.ZipFile(content).extractall(tmp_dir) | ||
xml = osp.join(tmp_dir, 'annotations.xml') | ||
self.assertTrue(xml) | ||
root = ET.parse(xml).getroot() | ||
tasks = root.findall('meta/project/tasks/task/name') | ||
self.assertEqual(len(tasks), expected_result) | ||
|
||
|
||
def test_api_v1_projects_remove_task_export(self): | ||
project = self.projects | ||
pid = project.id | ||
user = self.admin | ||
|
||
self._check_tasks_count(project, 4) | ||
self._check_xml(pid, user, 4) | ||
|
||
response = self._run_api_v1_tasks_id_delete(self._get_tasks_count(project)[0], self.admin) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. self.project.id instead of self._get_tasks_count(project)[0]? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. But here the removal of the task from the project is used. The project ID is not needed here.
|
||
self.assertEqual(response.status_code, status.HTTP_204_NO_CONTENT) | ||
|
||
self._check_tasks_count(project, 3) | ||
self._check_xml(pid, user, 3) | ||
|
||
|
||
class TaskListAPITestCase(APITestCase): | ||
def setUp(self): | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cls.project = db_project?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure. Fixed.