12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403 |
- import json
- from datetime import timedelta
- from django.utils import six, timezone
- from misago.acl.testutils import override_acl
- from misago.categories.models import Category
- from misago.readtracker import poststracker
- from misago.threads.models import Thread
- from .test_threads_api import ThreadsApiTestCase
- class ThreadPatchApiTestCase(ThreadsApiTestCase):
- def patch(self, api_link, ops):
- return self.client.patch(api_link, json.dumps(ops), content_type="application/json")
- class ThreadAddAclApiTests(ThreadPatchApiTestCase):
- def test_add_acl_true(self):
- """api adds current thread's acl to response"""
- response = self.patch(self.api_link, [
- {
- 'op': 'add',
- 'path': 'acl',
- 'value': True,
- },
- ])
- self.assertEqual(response.status_code, 200)
- response_json = response.json()
- self.assertTrue(response_json['acl'])
- def test_add_acl_false(self):
- """if value is false, api won't add acl to the response, but will set empty key"""
- response = self.patch(self.api_link, [
- {
- 'op': 'add',
- 'path': 'acl',
- 'value': False,
- },
- ])
- self.assertEqual(response.status_code, 200)
- response_json = response.json()
- self.assertIsNone(response_json['acl'])
- class ThreadChangeTitleApiTests(ThreadPatchApiTestCase):
- def test_change_thread_title(self):
- """api makes it possible to change thread title"""
- self.override_acl({'can_edit_threads': 2})
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'title',
- 'value': "Lorem ipsum change!",
- },
- ]
- )
- self.assertEqual(response.status_code, 200)
- response_json = response.json()
- self.assertEqual(response_json['title'], "Lorem ipsum change!")
- thread_json = self.get_thread_json()
- self.assertEqual(thread_json['title'], "Lorem ipsum change!")
- def test_change_thread_title_no_permission(self):
- """api validates permission to change title"""
- self.override_acl({'can_edit_threads': 0})
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'title',
- 'value': "Lorem ipsum change!",
- },
- ]
- )
- self.assertEqual(response.status_code, 400)
- response_json = response.json()
- self.assertEqual(response_json['detail'][0], "You can't edit threads in this category.")
- def test_change_thread_title_closed_category_no_permission(self):
- """api test permission to edit thread title in closed category"""
- self.override_acl({
- 'can_edit_threads': 2,
- 'can_close_threads': 0
- })
- self.category.is_closed = True
- self.category.save()
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'title',
- 'value': "Lorem ipsum change!",
- },
- ]
- )
- self.assertEqual(response.status_code, 400)
- response_json = response.json()
- self.assertEqual(
- response_json['detail'][0], "This category is closed. You can't edit threads in it."
- )
- def test_change_thread_title_closed_thread_no_permission(self):
- """api test permission to edit closed thread title"""
- self.override_acl({
- 'can_edit_threads': 2,
- 'can_close_threads': 0
- })
- self.thread.is_closed = True
- self.thread.save()
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'title',
- 'value': "Lorem ipsum change!",
- },
- ]
- )
- self.assertEqual(response.status_code, 400)
- response_json = response.json()
- self.assertEqual(
- response_json['detail'][0], "This thread is closed. You can't edit it."
- )
- def test_change_thread_title_after_edit_time(self):
- """api cleans, validates and rejects too short title"""
- self.override_acl({'thread_edit_time': 1, 'can_edit_threads': 1})
- self.thread.starter = self.user
- self.thread.started_on = timezone.now() - timedelta(minutes=10)
- self.thread.save()
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'title',
- 'value': "Lorem ipsum change!",
- },
- ]
- )
- self.assertEqual(response.status_code, 400)
- response_json = response.json()
- self.assertEqual(
- response_json['detail'][0], "You can't edit threads that are older than 1 minute."
- )
- def test_change_thread_title_invalid(self):
- """api cleans, validates and rejects too short title"""
- self.override_acl({'can_edit_threads': 2})
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'title',
- 'value': 12,
- },
- ]
- )
- self.assertEqual(response.status_code, 400)
- response_json = response.json()
- self.assertEqual(
- response_json['detail'][0],
- "Thread title should be at least 5 characters long (it has 2)."
- )
- class ThreadPinGloballyApiTests(ThreadPatchApiTestCase):
- def test_pin_thread(self):
- """api makes it possible to pin globally thread"""
- self.override_acl({'can_pin_threads': 2})
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'weight',
- 'value': 2,
- },
- ]
- )
- self.assertEqual(response.status_code, 200)
- response_json = response.json()
- self.assertEqual(response_json['weight'], 2)
- thread_json = self.get_thread_json()
- self.assertEqual(thread_json['weight'], 2)
- def test_pin_thread_closed_category_no_permission(self):
- """api checks if category is closed"""
- self.override_acl({
- 'can_pin_threads': 2,
- 'can_close_threads': 0,
- })
- self.category.is_closed = True
- self.category.save()
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'weight',
- 'value': 2,
- },
- ]
- )
- self.assertEqual(response.status_code, 400)
- response_json = response.json()
- self.assertEqual(
- response_json['detail'][0], "This category is closed. You can't change threads weights in it."
- )
- def test_pin_thread_closed_no_permission(self):
- """api checks if thread is closed"""
- self.override_acl({
- 'can_pin_threads': 2,
- 'can_close_threads': 0,
- })
- self.thread.is_closed = True
- self.thread.save()
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'weight',
- 'value': 2,
- },
- ]
- )
- self.assertEqual(response.status_code, 400)
- response_json = response.json()
- self.assertEqual(
- response_json['detail'][0], "This thread is closed. You can't change its weight."
- )
- def test_unpin_thread(self):
- """api makes it possible to unpin thread"""
- self.thread.weight = 2
- self.thread.save()
- thread_json = self.get_thread_json()
- self.assertEqual(thread_json['weight'], 2)
- self.override_acl({'can_pin_threads': 2})
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'weight',
- 'value': 0,
- },
- ]
- )
- self.assertEqual(response.status_code, 200)
- response_json = response.json()
- self.assertEqual(response_json['weight'], 0)
- thread_json = self.get_thread_json()
- self.assertEqual(thread_json['weight'], 0)
- def test_pin_thread_no_permission(self):
- """api pin thread globally with no permission fails"""
- self.override_acl({'can_pin_threads': 1})
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'weight',
- 'value': 2,
- },
- ]
- )
- self.assertEqual(response.status_code, 400)
- response_json = response.json()
- self.assertEqual(
- response_json['detail'][0], "You can't pin threads globally in this category."
- )
- thread_json = self.get_thread_json()
- self.assertEqual(thread_json['weight'], 0)
- def test_unpin_thread_no_permission(self):
- """api unpin thread with no permission fails"""
- self.thread.weight = 2
- self.thread.save()
- thread_json = self.get_thread_json()
- self.assertEqual(thread_json['weight'], 2)
- self.override_acl({'can_pin_threads': 1})
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'weight',
- 'value': 1,
- },
- ]
- )
- self.assertEqual(response.status_code, 400)
- response_json = response.json()
- self.assertEqual(
- response_json['detail'][0], "You can't change globally pinned threads weights in this category."
- )
- thread_json = self.get_thread_json()
- self.assertEqual(thread_json['weight'], 2)
- class ThreadPinLocallyApiTests(ThreadPatchApiTestCase):
- def test_pin_thread(self):
- """api makes it possible to pin locally thread"""
- self.override_acl({'can_pin_threads': 1})
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'weight',
- 'value': 1,
- },
- ]
- )
- self.assertEqual(response.status_code, 200)
- response_json = response.json()
- self.assertEqual(response_json['weight'], 1)
- thread_json = self.get_thread_json()
- self.assertEqual(thread_json['weight'], 1)
- def test_unpin_thread(self):
- """api makes it possible to unpin thread"""
- self.thread.weight = 1
- self.thread.save()
- thread_json = self.get_thread_json()
- self.assertEqual(thread_json['weight'], 1)
- self.override_acl({'can_pin_threads': 1})
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'weight',
- 'value': 0,
- },
- ]
- )
- self.assertEqual(response.status_code, 200)
- response_json = response.json()
- self.assertEqual(response_json['weight'], 0)
- thread_json = self.get_thread_json()
- self.assertEqual(thread_json['weight'], 0)
- def test_pin_thread_no_permission(self):
- """api pin thread locally with no permission fails"""
- self.override_acl({'can_pin_threads': 0})
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'weight',
- 'value': 1,
- },
- ]
- )
- self.assertEqual(response.status_code, 400)
- response_json = response.json()
- self.assertEqual(
- response_json['detail'][0], "You can't change threads weights in this category."
- )
- thread_json = self.get_thread_json()
- self.assertEqual(thread_json['weight'], 0)
- def test_unpin_thread_no_permission(self):
- """api unpin thread with no permission fails"""
- self.thread.weight = 1
- self.thread.save()
- thread_json = self.get_thread_json()
- self.assertEqual(thread_json['weight'], 1)
- self.override_acl({'can_pin_threads': 0})
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'weight',
- 'value': 0,
- },
- ]
- )
- self.assertEqual(response.status_code, 400)
- response_json = response.json()
- self.assertEqual(
- response_json['detail'][0], "You can't change threads weights in this category."
- )
- thread_json = self.get_thread_json()
- self.assertEqual(thread_json['weight'], 1)
- class ThreadMoveApiTests(ThreadPatchApiTestCase):
- def setUp(self):
- super(ThreadMoveApiTests, self).setUp()
- Category(
- name='Category B',
- slug='category-b',
- ).insert_at(
- self.category,
- position='last-child',
- save=True,
- )
- self.category_b = Category.objects.get(slug='category-b')
- def override_other_acl(self, acl):
- other_category_acl = self.user.acl_cache['categories'][self.category.pk].copy()
- other_category_acl.update({
- 'can_see': 1,
- 'can_browse': 1,
- 'can_see_all_threads': 1,
- 'can_see_own_threads': 0,
- 'can_hide_threads': 0,
- 'can_approve_content': 0,
- })
- other_category_acl.update(acl)
- categories_acl = self.user.acl_cache['categories']
- categories_acl[self.category_b.pk] = other_category_acl
- visible_categories = [self.category.pk]
- if other_category_acl['can_see']:
- visible_categories.append(self.category_b.pk)
- override_acl(
- self.user, {
- 'visible_categories': visible_categories,
- 'categories': categories_acl,
- }
- )
- def test_move_thread_no_top(self):
- """api moves thread to other category, sets no top category"""
- self.override_acl({'can_move_threads': True})
- self.override_other_acl({'can_start_threads': 2})
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'category',
- 'value': self.category_b.pk,
- },
- {
- 'op': 'add',
- 'path': 'top-category',
- 'value': self.category_b.pk,
- },
- {
- 'op': 'replace',
- 'path': 'flatten-categories',
- 'value': None,
- },
- ]
- )
- self.assertEqual(response.status_code, 200)
- reponse_json = response.json()
- self.assertEqual(reponse_json['category'], self.category_b.pk)
- self.override_other_acl({})
- thread_json = self.get_thread_json()
- self.assertEqual(thread_json['category']['id'], self.category_b.pk)
- def test_move_thread_with_top(self):
- """api moves thread to other category, sets top"""
- self.override_acl({'can_move_threads': True})
- self.override_other_acl({'can_start_threads': 2})
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'category',
- 'value': self.category_b.pk,
- },
- {
- 'op': 'add',
- 'path': 'top-category',
- 'value': Category.objects.root_category().pk,
- },
- {
- 'op': 'replace',
- 'path': 'flatten-categories',
- 'value': None,
- },
- ]
- )
- self.assertEqual(response.status_code, 200)
- reponse_json = response.json()
- self.assertEqual(reponse_json['category'], self.category_b.pk)
- self.override_other_acl({})
- thread_json = self.get_thread_json()
- self.assertEqual(thread_json['category']['id'], self.category_b.pk)
- def test_move_thread_reads(self):
- """api moves thread reads together with thread"""
- self.override_acl({'can_move_threads': True})
- self.override_other_acl({'can_start_threads': 2})
- poststracker.save_read(self.user, self.thread.first_post)
- self.assertEqual(self.user.postread_set.count(), 1)
- self.user.postread_set.get(category=self.category)
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'category',
- 'value': self.category_b.pk,
- },
- {
- 'op': 'add',
- 'path': 'top-category',
- 'value': self.category_b.pk,
- },
- {
- 'op': 'replace',
- 'path': 'flatten-categories',
- 'value': None,
- },
- ]
- )
- self.assertEqual(response.status_code, 200)
- # thread read was moved to new category
- postreads = self.user.postread_set.filter(post__is_event=False).order_by('id')
- self.assertEqual(postreads.count(), 1)
- postreads.get(category=self.category_b)
- def test_move_thread_subscriptions(self):
- """api moves thread subscriptions together with thread"""
- self.override_acl({'can_move_threads': True})
- self.override_other_acl({'can_start_threads': 2})
- self.user.subscription_set.create(
- thread=self.thread,
- category=self.thread.category,
- last_read_on=self.thread.last_post_on,
- send_email=False,
- )
- self.assertEqual(self.user.subscription_set.count(), 1)
- self.user.subscription_set.get(category=self.category)
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'category',
- 'value': self.category_b.pk,
- },
- {
- 'op': 'add',
- 'path': 'top-category',
- 'value': self.category_b.pk,
- },
- {
- 'op': 'replace',
- 'path': 'flatten-categories',
- 'value': None,
- },
- ]
- )
- self.assertEqual(response.status_code, 200)
- # thread read was moved to new category
- self.assertEqual(self.user.subscription_set.count(), 1)
- self.user.subscription_set.get(category=self.category_b)
- def test_move_thread_no_permission(self):
- """api move thread to other category with no permission fails"""
- self.override_acl({'can_move_threads': False})
- self.override_other_acl({})
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'category',
- 'value': self.category_b.pk,
- },
- ]
- )
- self.assertEqual(response.status_code, 400)
- response_json = response.json()
- self.assertEqual(
- response_json['detail'][0], "You can't move threads in this category."
- )
- self.override_other_acl({})
- thread_json = self.get_thread_json()
- self.assertEqual(thread_json['category']['id'], self.category.pk)
- def test_move_thread_closed_category_no_permission(self):
- """api move thread from closed category with no permission fails"""
- self.override_acl({
- 'can_move_threads': True,
- 'can_close_threads': False,
- })
- self.override_other_acl({})
- self.category.is_closed = True
- self.category.save()
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'category',
- 'value': self.category_b.pk,
- },
- ]
- )
- self.assertEqual(response.status_code, 400)
- response_json = response.json()
- self.assertEqual(
- response_json['detail'][0], "This category is closed. You can't move it's threads."
- )
- def test_move_closed_thread_no_permission(self):
- """api move closed thread with no permission fails"""
- self.override_acl({
- 'can_move_threads': True,
- 'can_close_threads': False,
- })
- self.override_other_acl({})
- self.thread.is_closed = True
- self.thread.save()
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'category',
- 'value': self.category_b.pk,
- },
- ]
- )
- self.assertEqual(response.status_code, 400)
- response_json = response.json()
- self.assertEqual(
- response_json['detail'][0], "This thread is closed. You can't move it."
- )
- def test_move_thread_no_category_access(self):
- """api move thread to category with no access fails"""
- self.override_acl({'can_move_threads': True})
- self.override_other_acl({'can_see': False})
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'category',
- 'value': self.category_b.pk,
- },
- ]
- )
- self.assertEqual(response.status_code, 400)
- response_json = response.json()
- self.assertEqual(response_json['detail'][0], 'NOT FOUND')
- self.override_other_acl({})
- thread_json = self.get_thread_json()
- self.assertEqual(thread_json['category']['id'], self.category.pk)
- def test_move_thread_no_category_browse(self):
- """api move thread to category with no browsing access fails"""
- self.override_acl({'can_move_threads': True})
- self.override_other_acl({'can_browse': False})
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'category',
- 'value': self.category_b.pk,
- },
- ]
- )
- self.assertEqual(response.status_code, 400)
- response_json = response.json()
- self.assertEqual(
- response_json['detail'][0],
- 'You don\'t have permission to browse "Category B" contents.'
- )
- self.override_other_acl({})
- thread_json = self.get_thread_json()
- self.assertEqual(thread_json['category']['id'], self.category.pk)
- def test_move_thread_no_category_start_threads(self):
- """api move thread to category with no posting access fails"""
- self.override_acl({'can_move_threads': True})
- self.override_other_acl({'can_start_threads': False})
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'category',
- 'value': self.category_b.pk,
- },
- ]
- )
- self.assertEqual(response.status_code, 400)
- response_json = response.json()
- self.assertEqual(
- response_json['detail'][0],
- "You don't have permission to start new threads in this category."
- )
- self.override_other_acl({})
- thread_json = self.get_thread_json()
- self.assertEqual(thread_json['category']['id'], self.category.pk)
- def test_move_thread_same_category(self):
- """api move thread to category it's already in fails"""
- self.override_acl({'can_move_threads': True})
- self.override_other_acl({'can_start_threads': 2})
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'category',
- 'value': self.thread.category_id,
- },
- ]
- )
- self.assertEqual(response.status_code, 400)
- response_json = response.json()
- self.assertEqual(
- response_json['detail'][0], "You can't move thread to the category it's already in."
- )
- self.override_other_acl({})
- thread_json = self.get_thread_json()
- self.assertEqual(thread_json['category']['id'], self.category.pk)
- def test_thread_flatten_categories(self):
- """api flatten thread categories"""
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'flatten-categories',
- 'value': None,
- },
- ]
- )
- self.assertEqual(response.status_code, 200)
- response_json = response.json()
- self.assertEqual(response_json['category'], self.category.pk)
- class ThreadCloseApiTests(ThreadPatchApiTestCase):
- def test_close_thread(self):
- """api makes it possible to close thread"""
- self.override_acl({'can_close_threads': True})
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'is-closed',
- 'value': True,
- },
- ]
- )
- self.assertEqual(response.status_code, 200)
- response_json = response.json()
- self.assertTrue(response_json['is_closed'])
- thread_json = self.get_thread_json()
- self.assertTrue(thread_json['is_closed'])
- def test_open_thread(self):
- """api makes it possible to open thread"""
- self.thread.is_closed = True
- self.thread.save()
- thread_json = self.get_thread_json()
- self.assertTrue(thread_json['is_closed'])
- self.override_acl({'can_close_threads': True})
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'is-closed',
- 'value': False,
- },
- ]
- )
- self.assertEqual(response.status_code, 200)
- response_json = response.json()
- self.assertFalse(response_json['is_closed'])
- thread_json = self.get_thread_json()
- self.assertFalse(thread_json['is_closed'])
- def test_close_thread_no_permission(self):
- """api close thread with no permission fails"""
- self.override_acl({'can_close_threads': False})
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'is-closed',
- 'value': True,
- },
- ]
- )
- self.assertEqual(response.status_code, 400)
- response_json = response.json()
- self.assertEqual(
- response_json['detail'][0], "You don't have permission to close this thread."
- )
- thread_json = self.get_thread_json()
- self.assertFalse(thread_json['is_closed'])
- def test_open_thread_no_permission(self):
- """api open thread with no permission fails"""
- self.thread.is_closed = True
- self.thread.save()
- thread_json = self.get_thread_json()
- self.assertTrue(thread_json['is_closed'])
- self.override_acl({'can_close_threads': False})
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'is-closed',
- 'value': False,
- },
- ]
- )
- self.assertEqual(response.status_code, 400)
- response_json = response.json()
- self.assertEqual(
- response_json['detail'][0], "You don't have permission to open this thread."
- )
- thread_json = self.get_thread_json()
- self.assertTrue(thread_json['is_closed'])
- class ThreadApproveApiTests(ThreadPatchApiTestCase):
- def test_approve_thread(self):
- """api makes it possible to approve thread"""
- self.thread.first_post.is_unapproved = True
- self.thread.first_post.save()
- self.thread.synchronize()
- self.thread.save()
- self.assertTrue(self.thread.is_unapproved)
- self.assertTrue(self.thread.has_unapproved_posts)
- self.override_acl({'can_approve_content': 1})
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'is-unapproved',
- 'value': False,
- },
- ]
- )
- self.assertEqual(response.status_code, 200)
- response_json = response.json()
- self.assertFalse(response_json['is_unapproved'])
- self.assertFalse(response_json['has_unapproved_posts'])
- thread_json = self.get_thread_json()
- self.assertFalse(thread_json['is_unapproved'])
- self.assertFalse(thread_json['has_unapproved_posts'])
- thread = Thread.objects.get(pk=self.thread.pk)
- self.assertFalse(thread.is_unapproved)
- self.assertFalse(thread.has_unapproved_posts)
- def test_approve_thread_category_closed_no_permission(self):
- """api checks permission for approving threads in closed categories"""
- self.thread.first_post.is_unapproved = True
- self.thread.first_post.save()
- self.thread.synchronize()
- self.thread.save()
- self.assertTrue(self.thread.is_unapproved)
- self.assertTrue(self.thread.has_unapproved_posts)
- self.category.is_closed = True
- self.category.save()
- self.override_acl({
- 'can_approve_content': 1,
- 'can_close_threads': 0,
- })
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'is-unapproved',
- 'value': False,
- },
- ]
- )
- self.assertEqual(response.status_code, 400)
- response_json = response.json()
- self.assertEqual(response_json['detail'][0], "This category is closed. You can't approve threads in it.")
- def test_approve_thread_closed_no_permission(self):
- """api checks permission for approving posts in closed categories"""
- self.thread.first_post.is_unapproved = True
- self.thread.first_post.save()
- self.thread.synchronize()
- self.thread.save()
- self.assertTrue(self.thread.is_unapproved)
- self.assertTrue(self.thread.has_unapproved_posts)
- self.thread.is_closed = True
- self.thread.save()
- self.override_acl({
- 'can_approve_content': 1,
- 'can_close_threads': 0,
- })
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'is-unapproved',
- 'value': False,
- },
- ]
- )
- self.assertEqual(response.status_code, 400)
- response_json = response.json()
- self.assertEqual(response_json['detail'][0], "This thread is closed. You can't approve it.")
- def test_unapprove_thread(self):
- """api returns permission error on approval removal"""
- self.override_acl({'can_approve_content': 1})
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'is-unapproved',
- 'value': True,
- },
- ]
- )
- self.assertEqual(response.status_code, 400)
- response_json = response.json()
- self.assertEqual(response_json['detail'][0], "Content approval can't be reversed.")
- class ThreadHideApiTests(ThreadPatchApiTestCase):
- def test_hide_thread(self):
- """api makes it possible to hide thread"""
- self.override_acl({'can_hide_threads': 1})
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'is-hidden',
- 'value': True,
- },
- ]
- )
- self.assertEqual(response.status_code, 200)
- reponse_json = response.json()
- self.assertTrue(reponse_json['is_hidden'])
- self.override_acl({'can_hide_threads': 1})
- thread_json = self.get_thread_json()
- self.assertTrue(thread_json['is_hidden'])
- def test_hide_thread_no_permission(self):
- """api hide thread with no permission fails"""
- self.override_acl({'can_hide_threads': 0})
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'is-hidden',
- 'value': True,
- },
- ]
- )
- self.assertEqual(response.status_code, 400)
- response_json = response.json()
- self.assertEqual(
- response_json['detail'][0], "You can't hide threads in this category."
- )
- thread_json = self.get_thread_json()
- self.assertFalse(thread_json['is_hidden'])
- def test_hide_non_owned_thread(self):
- """api forbids non-moderator from hiding other users threads"""
- self.override_acl({
- 'can_hide_own_threads': 1,
- 'can_hide_threads': 0
- })
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'is-hidden',
- 'value': True,
- },
- ]
- )
- self.assertEqual(response.status_code, 400)
- response_json = response.json()
- self.assertEqual(
- response_json['detail'][0], "You can't hide other users theads in this category."
- )
- def test_hide_owned_thread_no_time(self):
- """api forbids non-moderator from hiding other users threads"""
- self.override_acl({
- 'can_hide_own_threads': 1,
- 'can_hide_threads': 0,
- 'thread_edit_time': 1,
- })
- self.thread.starter = self.user
- self.thread.started_on = timezone.now() - timedelta(minutes=5)
- self.thread.save()
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'is-hidden',
- 'value': True,
- },
- ]
- )
- self.assertEqual(response.status_code, 400)
- response_json = response.json()
- self.assertEqual(
- response_json['detail'][0], "You can't hide threads that are older than 1 minute."
- )
- def test_hide_closed_category_no_permission(self):
- """api test permission to hide thread in closed category"""
- self.override_acl({
- 'can_hide_threads': 1,
- 'can_close_threads': 0
- })
- self.category.is_closed = True
- self.category.save()
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'is-hidden',
- 'value': True,
- },
- ]
- )
- self.assertEqual(response.status_code, 400)
- response_json = response.json()
- self.assertEqual(
- response_json['detail'][0], "This category is closed. You can't hide threads in it."
- )
- def test_hide_closed_thread_no_permission(self):
- """api test permission to hide closed thread"""
- self.override_acl({
- 'can_hide_threads': 1,
- 'can_close_threads': 0
- })
- self.thread.is_closed = True
- self.thread.save()
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'is-hidden',
- 'value': True,
- },
- ]
- )
- self.assertEqual(response.status_code, 400)
- response_json = response.json()
- self.assertEqual(
- response_json['detail'][0], "This thread is closed. You can't hide it."
- )
- class ThreadUnhideApiTests(ThreadPatchApiTestCase):
- def setUp(self):
- super(ThreadUnhideApiTests, self).setUp()
- self.thread.is_hidden = True
- self.thread.save()
- def test_unhide_thread(self):
- """api makes it possible to unhide thread"""
- self.override_acl({'can_hide_threads': 1})
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'is-hidden',
- 'value': False,
- },
- ]
- )
- self.assertEqual(response.status_code, 200)
- reponse_json = response.json()
- self.assertFalse(reponse_json['is_hidden'])
- self.override_acl({'can_hide_threads': 1})
- thread_json = self.get_thread_json()
- self.assertFalse(thread_json['is_hidden'])
- def test_unhide_thread_no_permission(self):
- """api unhide thread with no permission fails as thread is invisible"""
- self.override_acl({'can_hide_threads': 0})
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'is-hidden',
- 'value': True,
- },
- ]
- )
- self.assertEqual(response.status_code, 404)
- def test_unhide_closed_category_no_permission(self):
- """api test permission to unhide thread in closed category"""
- self.override_acl({
- 'can_hide_threads': 1,
- 'can_close_threads': 0
- })
- self.category.is_closed = True
- self.category.save()
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'is-hidden',
- 'value': False,
- },
- ]
- )
- self.assertEqual(response.status_code, 400)
- response_json = response.json()
- self.assertEqual(
- response_json['detail'][0], "This category is closed. You can't reveal threads in it."
- )
- def test_unhide_closed_thread_no_permission(self):
- """api test permission to unhide closed thread"""
- self.override_acl({
- 'can_hide_threads': 1,
- 'can_close_threads': 0
- })
- self.thread.is_closed = True
- self.thread.save()
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'is-hidden',
- 'value': False,
- },
- ]
- )
- self.assertEqual(response.status_code, 400)
- response_json = response.json()
- self.assertEqual(
- response_json['detail'][0], "This thread is closed. You can't reveal it."
- )
- class ThreadSubscribeApiTests(ThreadPatchApiTestCase):
- def test_subscribe_thread(self):
- """api makes it possible to subscribe thread"""
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'subscription',
- 'value': 'notify',
- },
- ]
- )
- self.assertEqual(response.status_code, 200)
- reponse_json = response.json()
- self.assertFalse(reponse_json['subscription'])
- thread_json = self.get_thread_json()
- self.assertFalse(thread_json['subscription'])
- subscription = self.user.subscription_set.get(thread=self.thread)
- self.assertFalse(subscription.send_email)
- def test_subscribe_thread_with_email(self):
- """api makes it possible to subscribe thread with emails"""
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'subscription',
- 'value': 'email',
- },
- ]
- )
- self.assertEqual(response.status_code, 200)
- reponse_json = response.json()
- self.assertTrue(reponse_json['subscription'])
- thread_json = self.get_thread_json()
- self.assertTrue(thread_json['subscription'])
- subscription = self.user.subscription_set.get(thread=self.thread)
- self.assertTrue(subscription.send_email)
- def test_unsubscribe_thread(self):
- """api makes it possible to unsubscribe thread"""
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'subscription',
- 'value': 'remove',
- },
- ]
- )
- self.assertEqual(response.status_code, 200)
- reponse_json = response.json()
- self.assertIsNone(reponse_json['subscription'])
- thread_json = self.get_thread_json()
- self.assertIsNone(thread_json['subscription'])
- self.assertEqual(self.user.subscription_set.count(), 0)
- def test_subscribe_as_guest(self):
- """api makes it impossible to subscribe thread"""
- self.logout_user()
- response = self.patch(
- self.api_link, [
- {
- 'op': 'replace',
- 'path': 'subscription',
- 'value': 'email',
- },
- ]
- )
- self.assertEqual(response.status_code, 403)
- def test_subscribe_nonexistant_thread(self):
- """api makes it impossible to subscribe nonexistant thread"""
- bad_api_link = self.api_link.replace(
- six.text_type(self.thread.pk), six.text_type(self.thread.pk + 9)
- )
- response = self.patch(
- bad_api_link, [
- {
- 'op': 'replace',
- 'path': 'subscription',
- 'value': 'email',
- },
- ]
- )
- self.assertEqual(response.status_code, 404)
|