Skip to content

Commit

Permalink
func tests: mark test TestPurge as expected to fail until #788 is solved
Browse files Browse the repository at this point in the history
  • Loading branch information
vankoven committed Mar 15, 2018
1 parent e6dbdfb commit d81b2c1
Showing 1 changed file with 18 additions and 14 deletions.
32 changes: 18 additions & 14 deletions tempesta_fw/t/functional/cache/test_purge.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
"""Functional tests of caching different methods."""

from __future__ import print_function
from helpers import tf_cfg, deproxy, chains
import unittest
from helpers import tf_cfg, chains
from testers import functional

__author__ = 'Tempesta Technologies, Inc.'
Expand All @@ -21,20 +22,23 @@ class TestPurge(functional.FunctionalTest):

def chains(self):
uri = '/page.html'
result = [# All cacheable method to the resource must be cached
chains.proxy(method='GET', uri=uri),
chains.proxy(method='HEAD', uri=uri),
chains.cache(method='GET', uri=uri),
chains.cache(method='HEAD', uri=uri),

chains.cache(method='PURGE', uri=uri),
# All cached responses was removed, expect re-caching them
chains.proxy(method='GET', uri=uri),
chains.proxy(method='HEAD', uri=uri),
chains.cache(method='GET', uri=uri),
chains.cache(method='HEAD', uri=uri)
]
result = [
# All cacheable method to the resource must be cached
chains.proxy(method='GET', uri=uri),
chains.proxy(method='HEAD', uri=uri),
chains.cache(method='GET', uri=uri),
chains.cache(method='HEAD', uri=uri),

chains.cache(method='PURGE', uri=uri),
# All cached responses was removed, expect re-caching them
chains.proxy(method='GET', uri=uri),
chains.proxy(method='HEAD', uri=uri),
chains.cache(method='GET', uri=uri),
chains.cache(method='HEAD', uri=uri)
]
return result

@unittest.expectedFailure
def test_purge(self):
""""Issue #788 must be resolved to make the test pass"""
self.generic_test_routine(self.config, self.chains())

0 comments on commit d81b2c1

Please sign in to comment.