일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 단축어
- selenium
- nocookie
- python
- docker-compose
- 탐욕 알고리즘
- DB
- 깃허브
- 바로학교
- G-Suite
- 유튜브
- MongoDB
- gpu 병렬처리
- 링크
- List
- 구글 드라이브
- venv
- Django
- 충북
- 알고리즘
- flask
- 아이폰
- 파이썬
- 추천 영상
- pymongo
- 코딩
- Google Drive
- 리스트
- 장고
- 그리디 알고리즘
Archives
- Today
- Total
목록테스트 (1)
SSAMKO의 개발 이야기
[Django] Test 코드 작성시 header 추가하기
Django를 API서버로만 이용할 때, 외부 사용자들에게 header를 통해 인증정보를 받아야 할 경우가 있다. 이때, Test코드에서도 이를 처리해야 하는데, TestCase의 client에서 요청을 보낼때, from django.urls import reverse from django.test import TestCase class AircodeAPITests(TestCase): def test_schedule(self): url = reverse("send_schedule") header = {'HTTP_TOKEN':'afaew$@m#iow23!3@29fafewm@*'} response = self.client.post(url, **header) 위와 같이 client.post() 혹은 clien..
Django
2021. 1. 15. 07:42