Thanks for reply! self.scope looks like this:
{'type': 'websocket', 'path': 'auctions/1/', 'headers': [], 'subprotocols': []} I am not sure why url_route is not there. I rewrote my group_name code to use path instead and now this part works. There is a new error though, during disconnect, when calling this part of the test: await communicator.disconnect() Here is disconnect method of my consumer, but I think the problem isnt here: def disconnect(self): AsyncToSync(self.channel_layer.group_discard)(self.group_name, self.channel_name) This is the pytest output: > await communicator.disconnect() auctions/tests/test_consumers.py:18: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /home/khazidhea/.local/share/virtualenvs/django_root-FXsg3jFU/lib/python3.6/site-packages/channels/testing/websocket.py:100: in disconnect await self.future /home/khazidhea/.local/share/virtualenvs/django_root-FXsg3jFU/lib/python3.6/site-packages/channels/consumer.py:53: in __call__ await await_many_dispatch([receive, self.channel_receive], self.dispatch) /home/khazidhea/.local/share/virtualenvs/django_root-FXsg3jFU/lib/python3.6/site-packages/channels/utils.py:48: in await_many_dispatch await dispatch(result) /home/khazidhea/.local/share/virtualenvs/django_root-FXsg3jFU/lib/python3.6/site-packages/asgiref/sync.py:103: in inner return await async_func(*args, **kwargs) /home/khazidhea/.local/share/virtualenvs/django_root-FXsg3jFU/lib/python3.6/site-packages/asgiref/sync.py:83: in __call__ return await asyncio.wait_for(future, timeout=None) /usr/lib/python3.6/asyncio/tasks.py:339: in wait_for return (yield from fut) /usr/lib/python3.6/concurrent/futures/thread.py:56: in run result = self.fn(*self.args, **self.kwargs) /home/khazidhea/.local/share/virtualenvs/django_root-FXsg3jFU/lib/python3.6/site-packages/asgiref/sync.py:95: in thread_handler raise e /home/khazidhea/.local/share/virtualenvs/django_root-FXsg3jFU/lib/python3.6/site-packages/asgiref/sync.py:93: in thread_handler self.func(*args, **kwargs) /home/khazidhea/.local/share/virtualenvs/django_root-FXsg3jFU/lib/python3.6/site-packages/channels/consumer.py:98: in dispatch handler(message) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <auctions.consumers.AuctionConsumer object at 0x7f098d2a4198>, message = {'code': 1000, 'type': 'websocket.disconnect'} def websocket_disconnect(self, message): """ Called when a WebSocket connection is closed. Base level so you don't need to call super() all the time. """ # TODO: group leaving > self.disconnect(message["code"]) E TypeError: disconnect() takes 1 positional argument but 2 were given /home/khazidhea/.local/share/virtualenvs/django_root-FXsg3jFU/lib/python3.6/site-packages/channels/generic/websocket.py:86: TypeError ============================================================================================ 1 failed in 0.36 seconds ============================================================================================= Task was destroyed but it is pending! task: <Task pending coro=<RedisConnection._read_data() running at /home/khazidhea/.local/share/virtualenvs/django_root-FXsg3jFU/lib/python3.6/site-packages/aioredis/connection.py:181> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f098d344ac8>()]> cb=[Future.set_result()]> P.S. I have a couple more problems with testing this particular project related to channels. For example I tried ignoring this disconnect problem, this test passed with 99% coverage, but when I run the whole test suite it breaks and I figured out what other tests break this one, but not sure why. Would you mind looking at this too? If yes, should I create a new thread or continue in this one? On Thursday, February 8, 2018 at 4:07:38 AM UTC+6, Andrew Godwin wrote: > > I'm not going to address the mocking, as there's subtle details there > (e.g. you mocked group_name as a non-property, I think), but look at the > main issue. > > Can you make your code print out what _is_ in `self.scope`? url_route > should definitely be in there, but I am curious what it looks like if it is > not. > > Andrew > > On Wed, Feb 7, 2018 at 12:16 PM, Azamat Galimzhanov < > aza...@galimzhanov.com <javascript:>> wrote: > >> Hello, >> >> I'm setting up an auctions application using channels and websockets. >> When I'm running the server the code works just fine, troubles arise when >> I'm trying to test my app. >> >> asgiref==2.1.3 >> daphne==2.0.2 >> Django==2.0.2 >> channels==2.0.1 >> channels-redis==2.0.2 >> pytest==3.4.0 >> pytest-asyncio==0.8.0 >> >> a bunch of other stuff, but I think that's it for relevant libraries. >> >> Here is my consumer: >> >> class AuctionConsumer(WebsocketConsumer): >> @property >> @lru_cache(maxsize=None) >> def group_name(self): >> auction_id = self.scope['url_route']['kwargs']['auction_id'] >> return 'auction_{}'.format(auction_id) >> >> def connect(self): >> AsyncToSync(self.channel_layer.group_add)(self.group_name, >> self.channel_name) >> self.accept() >> >> >> Here is my routing: >> >> application = ProtocolTypeRouter({ >> 'websocket': URLRouter([ >> path("auctions/<auction_id>/", AuctionConsumer), >> ]), >> }) >> >> >> And here is my test: >> >> >> @pytest.mark.asyncio >> async def test_auction_consumer(mocker): >> communicator = WebsocketCommunicator(AuctionConsumer, 'auctions/1/') >> connected, subprotocol = await communicator.connect() >> assert connected >> # Test sending text >> await communicator.send_to(text_data='1') >> response = await communicator.receive_from() >> assert response == '1' >> # Close >> await communicator.disconnect() >> >> >> >> I'm running into the following problem; >> >> @property >> @lru_cache(maxsize=None) >> def group_name(self): >> > auction_id = self.scope['url_route']['kwargs']['auction_id'] >> E KeyError: 'url_route' >> >> I tried mocking at the top of my test: >> >> group_name = >> mocker.patch('auctions.consumers.AuctionConsumer.group_name') >> group_name.return_value = 'auction' >> >> >> But then I run into: >> >> def valid_group_name(self, name): >> if self.match_type_and_length(name): >> if bool(self.group_name_regex.match(name)): >> return True >> raise TypeError( >> "Group name must be a valid unicode string containing only >> ASCII " + >> > "alphanumerics, hyphens, or periods." >> ) >> E TypeError: Group name must be a valid unicode string containing >> only ASCII alphanumerics, hyphens, or periods. >> >> >> I also tried: >> >> scope = mocker.patch('auctions.consumers.AuctionConsumer.scope') >> scope.return_value = {'url_route': {}} >> >> >> But that got me: >> >> if not self.create and original is DEFAULT: >> raise AttributeError( >> > "%s does not have the attribute %r" % (target, name) >> ) >> E AttributeError: <class 'auctions.consumers.AuctionConsumer'> >> does not have the attribute 'scope' >> >> >> At this point I'm out of ideas. Anything I should try? >> >> Thanks in advance. >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Django users" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to django-users...@googlegroups.com <javascript:>. >> To post to this group, send email to django...@googlegroups.com >> <javascript:>. >> Visit this group at https://groups.google.com/group/django-users. >> To view this discussion on the web visit >> https://groups.google.com/d/msgid/django-users/528e93c5-dfb1-4cc1-a599-b99404c59533%40googlegroups.com >> >> <https://groups.google.com/d/msgid/django-users/528e93c5-dfb1-4cc1-a599-b99404c59533%40googlegroups.com?utm_medium=email&utm_source=footer> >> . >> For more options, visit https://groups.google.com/d/optout. >> > > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to django-users@googlegroups.com. Visit this group at https://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/c8bcb0e6-9792-4762-b031-a48b7c5e8389%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.