pax_global_header00006660000000000000000000000064145545043040014516gustar00rootroot0000000000000052 comment=68038d0559ba306395acc1abf6609e005f370b17 vcrpy-6.0.1/000077500000000000000000000000001455450430400126655ustar00rootroot00000000000000vcrpy-6.0.1/.codecov.yml000066400000000000000000000001771455450430400151150ustar00rootroot00000000000000coverage: status: project: default: target: 75 # Allow 0% coverage regression threshold: 0 vcrpy-6.0.1/.editorconfig000066400000000000000000000003011455450430400153340ustar00rootroot00000000000000root = true [*] indent_style = space indent_size = 4 charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true [Makefile] indent_style = tab [*.{yml,yaml}] indent_size = 2 vcrpy-6.0.1/.github/000077500000000000000000000000001455450430400142255ustar00rootroot00000000000000vcrpy-6.0.1/.github/dependabot.yml000066400000000000000000000003101455450430400170470ustar00rootroot00000000000000version: 2 updates: - package-ecosystem: pip directory: "/" schedule: interval: weekly - package-ecosystem: "github-actions" directory: "/" schedule: interval: weekly vcrpy-6.0.1/.github/workflows/000077500000000000000000000000001455450430400162625ustar00rootroot00000000000000vcrpy-6.0.1/.github/workflows/codespell.yml000066400000000000000000000005431455450430400207610ustar00rootroot00000000000000--- name: Codespell on: push: branches: [master] pull_request: branches: [master] permissions: contents: read jobs: codespell: name: Check for spelling errors runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 - name: Codespell uses: codespell-project/actions-codespell@v2 vcrpy-6.0.1/.github/workflows/docs.yml000066400000000000000000000007501455450430400177370ustar00rootroot00000000000000name: Validate docs on: push: paths: - 'docs/**' jobs: validate: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: python-version: "3.12" - name: Install build dependencies run: pip install -r docs/requirements.txt - name: Rendering HTML documentation run: sphinx-build -b html docs/ html - name: Inspect html rendered run: cat html/index.html vcrpy-6.0.1/.github/workflows/main.yml000066400000000000000000000035731455450430400177410ustar00rootroot00000000000000name: Test on: push: branches: - master pull_request: workflow_dispatch: jobs: build: runs-on: ubuntu-latest strategy: fail-fast: false matrix: python-version: - "3.8" - "3.9" - "3.10" - "3.11" - "3.12" - "pypy-3.8" - "pypy-3.9" - "pypy-3.10" urllib3-requirement: - "urllib3>=2" - "urllib3<2" exclude: - python-version: "3.8" urllib3-requirement: "urllib3>=2" - python-version: "pypy-3.8" urllib3-requirement: "urllib3>=2" - python-version: "3.9" urllib3-requirement: "urllib3>=2" - python-version: "pypy-3.9" urllib3-requirement: "urllib3>=2" - python-version: "pypy-3.10" urllib3-requirement: "urllib3>=2" steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} cache: pip - name: Install project dependencies run: | pip install --upgrade pip pip install codecov '.[tests]' '${{ matrix.urllib3-requirement }}' pip check - name: Run online tests run: ./runtests.sh --cov=./vcr --cov-branch --cov-report=xml --cov-append -m online - name: Run offline tests with no access to the Internet run: | # We're using unshare to take Internet access # away so that we'll notice whenever some new test # is missing @pytest.mark.online decoration in the future unshare --map-root-user --net -- \ sh -c 'ip link set lo up; ./runtests.sh --cov=./vcr --cov-branch --cov-report=xml --cov-append -m "not online"' - name: Run coverage run: codecov vcrpy-6.0.1/.github/workflows/pre-commit-detect-outdated.yml000066400000000000000000000037621455450430400241460ustar00rootroot00000000000000# Copyright (c) 2023 Sebastian Pipping # Licensed under the MIT license name: Detect outdated pre-commit hooks on: schedule: - cron: '0 16 * * 5' # Every Friday 4pm # NOTE: This will drop all permissions from GITHUB_TOKEN except metadata read, # and then (re)add the ones listed below: permissions: contents: write pull-requests: write jobs: pre_commit_detect_outdated: name: Detect outdated pre-commit hooks runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Set up Python 3.12 uses: actions/setup-python@v5 with: python-version: 3.12 - name: Install pre-commit run: |- pip install \ --disable-pip-version-check \ --no-warn-script-location \ --user \ pre-commit echo "PATH=${HOME}/.local/bin:${PATH}" >> "${GITHUB_ENV}" - name: Check for outdated hooks run: |- pre-commit autoupdate git diff -- .pre-commit-config.yaml - name: Create pull request from changes (if any) id: create-pull-request uses: peter-evans/create-pull-request@v5 with: author: 'pre-commit ' base: master body: |- For your consideration. :warning: Please **CLOSE AND RE-OPEN** this pull request so that [further workflow runs get triggered](https://github.com/peter-evans/create-pull-request/blob/main/docs/concepts-guidelines.md#triggering-further-workflow-runs) for this pull request. branch: precommit-autoupdate commit-message: "pre-commit: Autoupdate" delete-branch: true draft: true labels: enhancement title: "pre-commit: Autoupdate" - name: Log pull request URL if: "${{ steps.create-pull-request.outputs.pull-request-url }}" run: | echo "Pull request URL is: ${{ steps.create-pull-request.outputs.pull-request-url }}" vcrpy-6.0.1/.github/workflows/pre-commit.yml000066400000000000000000000006131455450430400210610ustar00rootroot00000000000000# Copyright (c) 2023 Sebastian Pipping # Licensed under the MIT license name: Run pre-commit on: - pull_request - push - workflow_dispatch jobs: pre-commit: name: Run pre-commit runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: python-version: 3.12 - uses: pre-commit/action@v3.0.0 vcrpy-6.0.1/.gitignore000066400000000000000000000002551455450430400146570ustar00rootroot00000000000000*.pyc .tox .cache .pytest_cache/ build/ dist/ *.egg/ .coverage coverage.xml htmlcov/ *.egg-info/ pytestdebug.log pip-wheel-metadata/ .python-version fixtures/ /docs/_build vcrpy-6.0.1/.pre-commit-config.yaml000066400000000000000000000006701455450430400171510ustar00rootroot00000000000000# Copyright (c) 2023 Sebastian Pipping # Licensed under the MIT license repos: - repo: https://github.com/astral-sh/ruff-pre-commit rev: v0.1.13 hooks: - id: ruff args: ["--show-source"] - id: ruff-format - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.5.0 hooks: - id: check-merge-conflict - id: end-of-file-fixer - id: trailing-whitespace vcrpy-6.0.1/.readthedocs.yaml000066400000000000000000000011271455450430400161150ustar00rootroot00000000000000# .readthedocs.yaml # Read the Docs configuration file # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details # Required version: 2 # Set the version of Python and other tools you might need build: os: ubuntu-22.04 tools: python: "3.12" # Build documentation in the docs/ directory with Sphinx sphinx: configuration: docs/conf.py # We recommend specifying your dependencies to enable reproducible builds: # https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html python: install: - requirements: docs/requirements.txt - method: pip path: . vcrpy-6.0.1/LICENSE.txt000066400000000000000000000020471455450430400145130ustar00rootroot00000000000000Copyright (c) 2012-2015 Kevin McCarthy Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. vcrpy-6.0.1/MANIFEST.in000066400000000000000000000001761455450430400144270ustar00rootroot00000000000000include README.rst include LICENSE.txt recursive-include tests * recursive-exclude * __pycache__ recursive-exclude * *.py[co] vcrpy-6.0.1/README.rst000066400000000000000000000050421455450430400143550ustar00rootroot00000000000000 ########### VCR.py 📼 ########### |PyPI| |Python versions| |Build Status| |CodeCov| |Gitter| ---- .. image:: https://vcrpy.readthedocs.io/en/latest/_images/vcr.svg :alt: vcr.py logo This is a Python version of `Ruby's VCR library `__. Source code https://github.com/kevin1024/vcrpy Documentation https://vcrpy.readthedocs.io/ Rationale --------- VCR.py simplifies and speeds up tests that make HTTP requests. The first time you run code that is inside a VCR.py context manager or decorated function, VCR.py records all HTTP interactions that take place through the libraries it supports and serializes and writes them to a flat file (in yaml format by default). This flat file is called a cassette. When the relevant piece of code is executed again, VCR.py will read the serialized requests and responses from the aforementioned cassette file, and intercept any HTTP requests that it recognizes from the original test run and return the responses that corresponded to those requests. This means that the requests will not actually result in HTTP traffic, which confers several benefits including: - The ability to work offline - Completely deterministic tests - Increased test execution speed If the server you are testing against ever changes its API, all you need to do is delete your existing cassette files, and run your tests again. VCR.py will detect the absence of a cassette file and once again record all HTTP interactions, which will update them to correspond to the new API. Usage with Pytest ----------------- There is a library to provide some pytest fixtures called pytest-recording https://github.com/kiwicom/pytest-recording License ------- This library uses the MIT license. See `LICENSE.txt `__ for more details .. |PyPI| image:: https://img.shields.io/pypi/v/vcrpy.svg :target: https://pypi.python.org/pypi/vcrpy .. |Python versions| image:: https://img.shields.io/pypi/pyversions/vcrpy.svg :target: https://pypi.python.org/pypi/vcrpy .. |Build Status| image:: https://github.com/kevin1024/vcrpy/actions/workflows/main.yml/badge.svg :target: https://github.com/kevin1024/vcrpy/actions .. |Gitter| image:: https://badges.gitter.im/Join%20Chat.svg :alt: Join the chat at https://gitter.im/kevin1024/vcrpy :target: https://gitter.im/kevin1024/vcrpy?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge .. |CodeCov| image:: https://codecov.io/gh/kevin1024/vcrpy/branch/master/graph/badge.svg :target: https://codecov.io/gh/kevin1024/vcrpy :alt: Code Coverage Status vcrpy-6.0.1/docs/000077500000000000000000000000001455450430400136155ustar00rootroot00000000000000vcrpy-6.0.1/docs/Makefile000066400000000000000000000163551455450430400152670ustar00rootroot00000000000000# Makefile for Sphinx documentation # # You can set these variables from the command line. SPHINXOPTS = SPHINXBUILD = sphinx-build PAPER = BUILDDIR = _build # User-friendly check for sphinx-build ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1) $(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from http://sphinx-doc.org/) endif # Internal variables. PAPEROPT_a4 = -D latex_paper_size=a4 PAPEROPT_letter = -D latex_paper_size=letter ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . # the i18n builder cannot share the environment and doctrees with the others I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . .PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest coverage gettext help: @echo "Please use \`make ' where is one of" @echo " html to make standalone HTML files" @echo " dirhtml to make HTML files named index.html in directories" @echo " singlehtml to make a single large HTML file" @echo " pickle to make pickle files" @echo " json to make JSON files" @echo " htmlhelp to make HTML files and a HTML help project" @echo " qthelp to make HTML files and a qthelp project" @echo " applehelp to make an Apple Help Book" @echo " devhelp to make HTML files and a Devhelp project" @echo " epub to make an epub" @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter" @echo " latexpdf to make LaTeX files and run them through pdflatex" @echo " latexpdfja to make LaTeX files and run them through platex/dvipdfmx" @echo " text to make text files" @echo " man to make manual pages" @echo " texinfo to make Texinfo files" @echo " info to make Texinfo files and run them through makeinfo" @echo " gettext to make PO message catalogs" @echo " changes to make an overview of all changed/added/deprecated items" @echo " xml to make Docutils-native XML files" @echo " pseudoxml to make pseudoxml-XML files for display purposes" @echo " linkcheck to check all external links for integrity" @echo " doctest to run all doctests embedded in the documentation (if enabled)" @echo " coverage to run coverage check of the documentation (if enabled)" clean: rm -rf $(BUILDDIR)/* html: $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html @echo @echo "Build finished. The HTML pages are in $(BUILDDIR)/html." dirhtml: $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml @echo @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml." singlehtml: $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml @echo @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml." pickle: $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle @echo @echo "Build finished; now you can process the pickle files." json: $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json @echo @echo "Build finished; now you can process the JSON files." htmlhelp: $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp @echo @echo "Build finished; now you can run HTML Help Workshop with the" \ ".hhp project file in $(BUILDDIR)/htmlhelp." qthelp: $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp @echo @echo "Build finished; now you can run "qcollectiongenerator" with the" \ ".qhcp project file in $(BUILDDIR)/qthelp, like this:" @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/vcrpy.qhcp" @echo "To view the help file:" @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/vcrpy.qhc" applehelp: $(SPHINXBUILD) -b applehelp $(ALLSPHINXOPTS) $(BUILDDIR)/applehelp @echo @echo "Build finished. The help book is in $(BUILDDIR)/applehelp." @echo "N.B. You won't be able to view it unless you put it in" \ "~/Library/Documentation/Help or install it in your application" \ "bundle." devhelp: $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp @echo @echo "Build finished." @echo "To view the help file:" @echo "# mkdir -p $$HOME/.local/share/devhelp/vcrpy" @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/vcrpy" @echo "# devhelp" epub: $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub @echo @echo "Build finished. The epub file is in $(BUILDDIR)/epub." latex: $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex @echo @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex." @echo "Run \`make' in that directory to run these through (pdf)latex" \ "(use \`make latexpdf' here to do that automatically)." latexpdf: $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex @echo "Running LaTeX files through pdflatex..." $(MAKE) -C $(BUILDDIR)/latex all-pdf @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex." latexpdfja: $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex @echo "Running LaTeX files through platex and dvipdfmx..." $(MAKE) -C $(BUILDDIR)/latex all-pdf-ja @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex." text: $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text @echo @echo "Build finished. The text files are in $(BUILDDIR)/text." man: $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man @echo @echo "Build finished. The manual pages are in $(BUILDDIR)/man." texinfo: $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo @echo @echo "Build finished. The Texinfo files are in $(BUILDDIR)/texinfo." @echo "Run \`make' in that directory to run these through makeinfo" \ "(use \`make info' here to do that automatically)." info: $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo @echo "Running Texinfo files through makeinfo..." make -C $(BUILDDIR)/texinfo info @echo "makeinfo finished; the Info files are in $(BUILDDIR)/texinfo." gettext: $(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale @echo @echo "Build finished. The message catalogs are in $(BUILDDIR)/locale." changes: $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes @echo @echo "The overview file is in $(BUILDDIR)/changes." linkcheck: $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck @echo @echo "Link check complete; look for any errors in the above output " \ "or in $(BUILDDIR)/linkcheck/output.txt." doctest: $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest @echo "Testing of doctests in the sources finished, look at the " \ "results in $(BUILDDIR)/doctest/output.txt." coverage: $(SPHINXBUILD) -b coverage $(ALLSPHINXOPTS) $(BUILDDIR)/coverage @echo "Testing of coverage in the sources finished, look at the " \ "results in $(BUILDDIR)/coverage/python.txt." xml: $(SPHINXBUILD) -b xml $(ALLSPHINXOPTS) $(BUILDDIR)/xml @echo @echo "Build finished. The XML files are in $(BUILDDIR)/xml." pseudoxml: $(SPHINXBUILD) -b pseudoxml $(ALLSPHINXOPTS) $(BUILDDIR)/pseudoxml @echo @echo "Build finished. The pseudo-XML files are in $(BUILDDIR)/pseudoxml." vcrpy-6.0.1/docs/_static/000077500000000000000000000000001455450430400152435ustar00rootroot00000000000000vcrpy-6.0.1/docs/_static/vcr.png000066400000000000000000003433041455450430400165520ustar00rootroot00000000000000PNG  IHDR1c9 pHYs%%IR$sRGBgAMA aYIDATx}uWu ` NW6`όx8&ȃDW ]]3UNWcpIy L'^IOm6l#8Aa{{>{>yz=g>>t#.\뿿G:~Eү/K~oѿy'فn;E\|7/W/=hQB/%{evo]Wɼ;vm?SN&{W]}|I"7KEɯv oM^kUyM/o|O?vp $.ܫo-6olt|GtI}ׅ oDru~3OԶ .|ǥ׫!p&7wRzw:^t ]y8|OJe:'znoQG{@|I5Ͽ'Vuo:;)D>+oISҳ~}х ~DH[~]!ppM7~IzwryG_8yW.\8t}G *=8t*}#yA/V}'H` p@8 H$z =q,ceL` =X+$|Rv޺x߯|+̳ʶlS\|DxgWdR _]{}rwqy=wqu|Ey{޵SW}?_xG\ZGZurzCɇWmYJM/%%/կS[=ۜÈy`W{/_HsH.^{GVIwi5k_S.G2y߱Jc7j:/6Oɳw['-)q?\m_Gs cŋr\;9?". pPd^ə QN]t)I. G$/%n&l?:K2/V>=6%b5߶HmKۧv\'2N[6ѷʁg@Ep }W%R٦3KVퟻ2}%39 (w츖ŷn oLJL>vz/Issm?6[z$Kmdot.Ns?r̤eRXگ}YYY|䲗k)x[n įJ(ɖ]Igj3mYI7.M ?R"(%h=v)Uj|tz\2/'01)awGF;Dɼ~ٕx|Ay/'8pKͷΩ.&e_,[n`o\%"RRGsi"%Z]H [=S"%ud:&=y\RKVش-JzҊThېcҹJo~m%Uonm}/DNF,m CB1xe_<8!P&(XJ:tkYxYzN]DZagA!1I}DC=KOZ}&[TÁ,xؔx1N-ajqKsNtm1n'n[ }yz\/Uz_c+zC$Q"V1|[>E}jqHfRrbsUuX^d%[YBBtq*_|I;嬰po[縯 LImWUqWˬ]![VYVg%ӾW1nݝtMrHmgHv3/v',=VI@B"%Nb%dR&L%d_}/^p! O>)2d۵o58yqm[|pS''VSs^W)w)m'Iꓒ?>W:N z5Sr3vMN#nM.ciu/ץgG>q 򫵊nmJypRh%%1Y76ڷ6^DfąO.I k>)1ty֊%c$!;V^KiKw]ٵm{&QRҭ५X'U?~c#|N_7n_;~5N}8ܪ 7 gnO:^kU\lOK汿˿{K_*3$/e0+`g;D7~7H/~Qٕt|OΜ';S*9g/9_(޿-V"X1!<>Pӿ7VMOpO8V{ _n?Ӄ7?rj>ɟ_җ̷.nN??\IoX6B+Xλ/^|O<}1ݥx^zYy}Y~Fj֋J+'{C/fi=Kgi@BEZ%1Z/HQ:`_cZ}P#iVV=Hc%SZYZO, zplZ J`UkeU[GhrVPnӄ#/M@'KV鵒ԩ?߽g}H^YcUo}:+p<KɳXNJ%ZԻgxH^ZŤW}ÕU)qwʾJ$Zi[O|'2C&%⎓{mhS;iViBBBZJ^"wKψK{}DOzoJ>7JJmLmoYmV۔@k;.S2$ {㍍7yYJȤN-M2wګ޵Jni֛~V;sz:8}{8їOV8$5@*)s>i^0$m;L)kKI'~ yϻ޽)\:lK\ݦOD~/6I$5y^yv $`J-ғ^_x cNy=y#)!;^'_PUB*=p};㏇ [:lCZ䇿5߶V$R)>Ie| $7IeRy)K|ۨY' =+i^-'gpt.%'':eINu,Y<8ixm^Lp)%cn`gGOK|e>;'Ã:g$'>~q/Rȩ&2scu4$`,}yI EZ @"0% r %OSЃW]Upi^#ypp-읥/+*+ygz^Zqk2ɈnW>imM:%IpႼW'ۥ$/^<8 HVH$.+E*;K:~/ؖ\7)}ϱM)U"oRbr&Rwߺ:r8fu$DHɩt[zȬJ+^;zI{I磟m穤ZJԤ]Z-v_$V ۓD9ӂ) w[knhB<8Mx)>E:Nz 3"?)y~+?|'(~Q#ao얗 3|~GT^җ i =X+`En`V۟nG8uXyo歶E<;.$鍶od^zFp9[W"裏#xDxiU^Zp-O>CC=\ 7xI*yZVE]>o]2/Ť{@MZ!G!w4o;vJH#<ܐ|ʋxIelK~Qxpn:aO㭱7xVqdXۓ'R/Oe|H yp [_G?ޓzwyש#uuL .)G"*N-@8$ gs |39?~8DR֗ߺG29]ys|l< p!py򏞔7fyEIJ}G6?~8 =z =AB p@8 H$z =qճ>+pB p@8 H$z =AB p@8 H$z =AB p@8 H$z =AB p@8 H$z =AB p@8 H$z =AB p@8 H$z =AB p@8 H$z =AB p@8 H$z =ABJu"%ҿ??_ HZwW5\;8SEG)oV׿uVH]JkxpEI)7 V]FH"$ɏ K~k_ce)nM8K7xz.$N~ ^3\0GJ}8yH+􌽴)M+Xw yzypE7w*,$LJ]wuWy#tXr$' 'rGeI)~z'-HԐ;hcG2&Lȝz wHmq:U$I9kFڑNiqUW]%pe-gS/soz2;uFucu'ߗ%Ces+n:snX^To4uݼP_ߎlIM7e2K9v?w]X>j|zO?؂*N^VFkj3?eol@={7"wk1k}=Iy uHA1Ps8U\֫"xY>[Mί~-}r7{u^"G_7&'n9۟=œsl9pm3.W>|yߧJ=7UKo}R|ErM7 \&Rbno{tܰJ]7$V冫7I9`Z3rd-Hgy8̈́P:ҥl :jubb}{'|, G[T' yIYVցuKnnL's* [aYN4 D|ҥ 0lyZ}@b;vI L{a/}>1i%>e u_WYfk%z:ͷ6ْp|=1ɭ.#NRʢg|lڔ ew\%lU^CHv.e 5KOAc[YSr\X%O$߳ҭ_ʳ>+0+Vrt}|*yV_rݸKgKx| f(HZ{9~uݥ.w@xk)v@U&}}Ayo:vAJy%i~VW Ӂ{OL;}vQ&j(?["67k1xٶ7mtm܇#>J:7nH@>.,DN"qe6v|zr|Ҵ%2Իyӏ46s{F٨]1NoA_ʫ}@eVW});oVɽ}QK_Y%=u\BoV왔{Uv]Zi| J8hLꛘ*Q1yEM.4gAN'ڣqSFcz%&VD-V5!NL`gJRg'KV.{9eDĮ.烲u>_&:ծ 9 Ws˜%mS/]nTJ]Lzm<}vI6Z]զ%'<-ҚEFԨϥD}bݨe4{&8aQ^ofz?_c% o <ou9>(r[orKioeYPj}?h6~IR}126onE>[x +ABoz %6I/YV+>&,H7S_ܶd綴kdZHJUm:Zۥ-7Zc\׾oݮvMp6ܞ*"&m6sG3A0޹~>n[pJ;-1Q5ETGir*U8mhw}4j{[e:$|; 2KJLYZɰQLݦDž:9v/nlJqu7 9] v:f~1G}['|?tɼ|-c7/޼?w_cҳ`'H- $`^ܻUOJn6}CBcmV8Dұݞm[U."W'j_=/J}Om\g?X׉? 0 eЛ տnvs(8s< Yt^ ^4t'r} Aɮ0ѫ"yg8bmAo>2beN7ؚnq*\RPN-/7wZn]Nc褒MgIq:T!M'"خ*Ah!61젓9D7u;YZ%u1/k>JV9sˏw"e[ ۦv'.5V"dxm6x}nz/gm$La Ӗy1(жo/moX'~o z 7 =GZC׿BȻ1Mh&J٠_&Q]NuE]>GR* "%J_K96;.J'Qmsy=pc+1ߟ/{KZU )*w+~3ujL (PcAqe ʝ+ m4 e8zo%Z>pmN Z1luJ4>8IhH}[6j]]ʿzM;L&?#[zVEkǏ[J}e>~ JyFiն/D}ݎ5Dvolr"bmBmy{)t6#~71_L湋Dn}n^~9t#K˥_!3H- $Vm/~+ qࠜlc>ɵ ໩w󩫓$Z}vH;XN}퐊F _[S|>Lb]|<Ȱ:FI_'C|jx[v9NZ &cC@={8P:}kv}vNU:Z1gn>I!]f&'&Q{wor|6pζ/K&co,q?|X2[&󖏋(od}=m?_!)a$M%%Ͼ=w6n[;N)Pfr0NKK ;K"+0m(ucٻԣw]Ξw΢>㜝ϑzw_$TC+-ҴgK(kzvX{{W$ABozpEyEJ8KiG-vuH$//xɝCE~%6hOӣS/>I)Wk |dEd4|O%/M-~W#5Um^Q3 A,]gciA>R[ާlr^:LׁiNNД\Bv?~u211d4hZuwkU]$](Ssq/z;75?%6ǿ4t,."ʋ{Hj(uv9gJ-mcz%vnQ2 l|ci-'c߮˘O?;$> 63$ABozpIĻU"K- m%*"dye`Y_p4EDrH\MCV$r}iZNHr=Z $|"aJvH3q6zi~0g^u&/0H_AY ns]IɸghF;o} wLDTnu=;i]V,&WGT.%/y;)Iyxdsu[#}lG+)+2eA&z_w|߶s\~dzmNwO=#}J=8[ H%R{V_ lT;AS]q/r8c.z Gy~p|.g}ۄTrxŰoyԣ4M탂u oXN)bHm+pZ$Lj^ol*1$*VEL.IfonJo3u?K qՕ#UY-v Huok3k9_<]\6&trp']F}^\E ]:6)[\y!wݞg/n? ĩx8# I_ЋwuJ:ذW{C9ƶE2azϔ2ixH MX'.L۠8+2 ͱVSM'Z:AYww_u{m=gˍ^jۭ]q"f߶>د IE67GNlFT3R+JQ'V9˙^ץvd_}=qΏ%>c,.r?OVi=y{?Y eЛ ֫zC;Wb6Dr7Ez3_R7rνqe3ׯtAiXNh+1O2]tlHm>ܕ<αH6>`WNڵJJ&6Xui3p"$Gt`M1IsERzf_C tsfO P^+Td"u 8g/D;eI Qrur[JmVXm1Z~Q&7]ۖQ ]~ܝo?N]9-_sj}J =J=ڃ2H@B믖M-Y7`I=2;*^ab SxXD"zu*9fZ9q^;AǶ7CϨ QUgn:b?Qrj:m{ѹ^ ۦ9,L Ƿ|l)g-ǝ{&eG˲1>5/++Ν>rRXu/Hyqyq y|{ CYncE *2'"TK;GJG6|~Z6>7e2oi/ _ǖl_޿g=bY-m=e0K?=9_~?yCEr'W䣟b$ABozpprtoja"ߺv݂uVpJNIǹcȢ蕯2ڷ WUs#[}yӎInt:~ }ǔ}lPcl:`BS|8,_Չ{~;~>]_W9z'f{VqQCwT8Kҵ=kl|l66_}Y*WINu[YmS9V *϶OIUklgE*a$gಾaU}#vsevR%ǷYQ`><}riʿ`3):sx@۵u,:=}$ԞZñ|md_([$JTv^JLm(tǺFqeF]7?؄@'ލz́ۤu[|sGIIrkۿ=\YӿȲ2s-=ZvK5Բ\j{Ģ?C'k+ϥ-s[s 2cMe Ƕ(`! Y2H@BMe:gcuPL;,g9oٸ+ҶMb 9E1۶gaI#eNԘ'57,[8DeM:f.9RiG'Z[f뱛sp||I%`B`_MWu[c}Ub=8[ HY[%U"[%:ZrOԦ>n$ޑۆ}zrgh yj)T.+Z1ȷ#R~ȩ2:2[޵#^Kv] jsz%Z{E6k71ǿݧ|W6ʼn6Y\E$uJّ=eƠs5'${;iN8-*O=Og4GIx?ޮջDJmeٳq{O=;ػ[pV z3Ѓ3*w'VY>NvPВUtbRW/=vu _HYg˜(x#tquDLiݎsNriͷK :)LFr]`'>g-'iRc.TTQgnjR#̚Q FKy ҆,c|2oi{9(ځ=-n:)in3lNVk8ߙ =!9Q`rAt Nu7;4nŦLgW?-sxemg7]CZZXV9ݽF"kI:i#o'b^6G91{$l@Bo$f guk2:DZU>Do4Xz9*uR]2u[?dYem kĶdm`ѹ QAM,S.KD};u`hHmP>)d5J`^80/exy>q2if/< ݊.}XNަo\,Ͱ-&(2fhRZyO=g6u%5W׍M&c>/:Yk~i =,11rev tP>?ʲuc?woӴoE?wdf\~H- $yy|_hdc]`9t) DiJ%ml꠿vS}yC+F0p8rYY|W8d*ذۅrey^baa*[˞>ws.cz_fdl. q)9’0EcchQ7_R_6ϏM1U,:dM<~_6m ^ؾ%1u]?r{) jeYKPFZ1ݞյ p쿳+"[rKeIyǵ9s-rmon]"KGl9g9վ~cp?_\`ӊyy\H- $qՊi:]qtGY ykeyG߆m>``[?+slyZ^e-^iۦ [V"PvoΣoy+r )ywԮR֪kD{DrY?v }2w_Wī]v3[zdcy:%}ls;/Q9,[y~ V> >ښ%gK snR2?ecwuyb_e$4#.~zxyiABo$f WK{7q@"';%8^)Jm*v〼d#^SɁANG vE99@p$oO',[r|pl%&WM c#|sS6`/:o^.OZe}19׉?o%ATmKZ?wy KTJ^:q>i6-O5-YsmGJ>ubc~nc>7ߏo}"-+ϗG,-Ӫ/n}7m?|q{-Km٪]ψ?yq$ABozpkJο(&&EDNZx~SI -oJ?xKv>((::Q7 qe^_+xNg^:_k}[m=s &޶ Se50)~\ 2 lyXx<@agҚ=r縺z{EZVc7?j9yz9c뒜s}|=`u᜾ϒu.GkV+þn.s^vTVdu9nv9~<G%v$dvo~7B]-nÅ2H@BNt{m'uVp/3۸ݒ^Vٴ$N,jN d Mq[klnVݶ>zgה3U ܢX#=vqxKd e+w[ߪ֪ұ!>.E(_ lRɜ{U(P&=l^Y\ Eɫ]{LKMI2۲Ʌ<V}zLF)Tc ǜ^aó~v":ISzQz[dð쿭C6_&پdφ-܆ {2N^$?"_%2=},>JvfM.͎ODǬH~YPFgF[g%ZR-ǯѮz\q2/Iw9UVڷ VG=K\'ROujrnZ^4qտQ9tKr̷}ֳf2Ԙ2+|5Z\?wSk޹>n{2r=RI@•aL6ɼhBƿӚjӋn2EΛcF[yAoRFqK>v_ڮ"nKlJ _]kvl'r[籯c}w u?|^fc2gm> WBӃz3B߭^]{5L;emMCnp &ech dIW|J*tm2qNu[8'jrjoIB[nĢj量$1,uvtض.yj^N,\15q#9h9 neS޷c_ϿnJ.HvW%榖vJ9"=mg6˰oZoٷ^ua>/ǷmOvKnlߏz۱9cz[d>m`?+_/#.mUlm؈oo7ǏMw]svߝd:M-Gz}]vz 7 = ~t?uufs?XûS14ڔu+O;c4 ls{Wɼ3_Cz@:$cQ O}4m^ 9]rW\3?t2EJ7:VpHP_k }tö:ɲfovuz?ysp{gmz_Hݒ,^d<ӞZmZ6x*߼B؋u]|n=,-~W犈HӲE:n?z_5m̝?69}wdh+?Gv ۫ʘɄPKuem?ߋ< $ABozp,Ҫ{OMߵ|L;1;>e\$ۏ}R\ap:ϑs q`֫@+vDtHǶRG[+GqCOtq;Dw~es,Ko}vx8zGHѢg<CVL_(><ֵq Yɩn1=/頮|]cȊzA' f~Od]K;23'xq'oJi% ZeWޔhrm||?ƕ)/7#Y8oQӱkp=[?'ˈU2vی}W-?*sGOfZ2H@Bv&=+gr*oM̲ @vMⵂmru3jHWmڹ׫[I>3rV޼utP=c"yu?pu8ǷD`Yͭ8][- "qAKDZ9yZvjۺ\L'oY9-jUS-[ZcEN.J}@+B|Fc֡]u.0d~k]CFJ)57+!6Xz^/q~:̷WotYq?,?QSSo'9mX"WA'/~vꮊjd'd[/gԳDX eЛYyo{s<P7T:iԁdjG%׷zmr}JxoCY_-1}{wJ-&vԼ>zCu~(3o jj/b%=04j`iIWky""Z{ 41:?A 9xMM_eGTWFZOfx/m7ۺhSx} 8a.jR0ۻX0Op2ձ̀%ÖE8lS'j]-Y>iZSOӶĺosV쿲syb[c"q7/՘mΗucYn[л:Һmi^ϛpa!$[n-׏oMLٿbzOFG-/ΥɏѾok66uXW[y-~}z[;^q<1j^<+u*Ŏ[g<KZxv4-kh_]5Gm6y~rss?sEW5>Xϕ/ǎ^$ V>8Ӊ$yxgl)2>}nE2moslEu?9_2NwR߮>gGn#Ej˲r꾩Q2co_*,}{U;=V:%QJ|lg73o؏Ow&X "7H`?BoVR;s3f>]MHtk"gmt{Ac\[d EԱ:jGn]{t>cIg6rAL/'ˏͿD6 K~LaysGЏp]2*yEV+gV-~o뽴meߺ6o_S7W-w⎕}ȝs₍#GLrm=cUPk'V]wuŖ6u9?~~ZfeԵlߦ۱6.L6no;5o˳O-睨Lbwvus++oڏ[e;1ܟ߂~@V-z%mD^zHli]OƭTdl oiq)$u]'E'P.up- l)mן7w>qZ_Gϛbf.ۨZNN~ Q\VGg%Oocjs[k%@μۭϖ^WmsO:稔;(\:۾WtK>l/+~=}?2Js籗 Ϯ,e2z7>u0*y翕,U}06cnNtذ'1F83mhI;oo k=>;JXd;4iE.]v}cv?fe ok k#Κ/ R_bO:TiS{ճߕz5_|Yyɿ|87fv^NڐNQgbl}P:|uS]%ӠurX>i5ZGdwbgS9 mK9weܬ\݌9+vYI$ aW)F׳%_&+jZdC{5 }ސ1V_$ 9#EfeSBd:psޏcbaj%(Oº h90{]fnײ?ؚ[>&!V>v䒫@%,+NJJd,Y՟үt_noߣS?qP9?6ڎG/Ǵ;QO%_1;icS"Te?涵 8X2E-ji_~nB_"oz؁m/O W:]lč5z[ 9~ ~+N_i|`Z} DqB%ݾA[DP[nN"6Ybmޛ>uVcu)xhu>0˿2ԯn]*&c`w׿X_+yT&¦%Wfl9v{7;ZxYb~I_ڠ*+tPk|{ z7ME̶yYIy[n 鱮rEיsY}.TC_яܗHײΥNR,іT}-sᴼmۜmyiwkm??_{y2cU#6/Jѱ[F옳=U})O>lRFiXװ:notN=_~"3z5}S2uc$4׿#zL%7몠%y(?8=uyv%﷠y]_066iـޏ&?}[l&Al.g4Z5ҷQ^O{%=Od*=}/:_ξ7ٔ{\m']txUa;3ҿoƕ-+kWD jU;|8l3Er]^tBa™ץ_+C[GWesʱ5Zv<}:֞l2O>2fkYYA{7걩l:(zys9s8~gszٯݫtWDee˘k%_` yߏd+oZQ~GMOwae_̧o;uϟ;IiNRִҼ/>t2moioWqXyyd|}s2PniEkd f.#;J։Ёz vg:_dƖz1B(E|Vw"}"gEoLDEO:зJ&t &q-v Y{}NT>:Uަov]SfauRH ,Jɢ: `tj_Kc=$bZq3myy.~]:*52tv DVf9ynRWo۴.cEW Mh~Ɍ*v}t=ٍDDZ+6)_@=sW;_涺}Y`~;vlgeL5ۉ༩ݒ_Z6XZߏWi?WD?7o{55Lڢyo߆#l?TG:ضՏzӳP_xt4${E~*=/jpۀ)m::N[3::ɰ9vvjoeA/ڿ**w428 a=~>pΡw\M~і$jAFne5v@u=lCm\sU:ضN U}Q_q=hi'C\;ruݴè_T%OZWT-]10">>EWoXnmynn^j۩X29$j|Z?GW_N~ =~O۹JKS2nou$Zx)ץކ+MksKIYyyugUB5ҥX 6ƹJVH5VC,ӎnM#CoZ/|v`})QD|[;yUOv;,N.Lv]倊DmڼhTG@wU09:=g2ָ';0xhG jb{qEM`/ھe}ryͿI+rol;qDvꍼҧs܂?VR`.;ro[NN1a̪yȏ_rY%NfN\[]{0s"2m meEc;Q)7#h~اuףv^u8QRApiit@^2hQ6R-6n߭~Wd "lFATԦZEa%tn]VZc$o uVsUGJޣYvVVN&.ԁ~6jzԲd-['>:Xz}!SvUhQEylq=ݚO?S։Ƿd/ctVcV:n'%j*|߿:NG}m"/˸`g̓p3ؔXYHa+eZCVxK=fRӉ7UsO6WNv UܾF.vbwTd`UӺ}.]*}ж*yCyh|$ -nۧV寊~6nUmW_rs^vz㤳?:,qg_9+TgLj[ku{.A7]%n;O:FkXuS |L<'G|`_"l/3wSL(Ǘmn]϶UnlߛjW_. Hnl՘_fes^P8ײnNdQm{:_N҂<}/N#C=iMŤ$ cMwCVB+f`FzoǗ_$adDa򽡭m (bw6EіGҮW(ۖZ'ֳ96KXE2׮KҿY9*AƱ\(<7up ]ܹu,A,e2jzYrtۖ$86ǯm+ >S+wǶgYec&V%@DC BKΑ4~Kc|mDOYd`=tb}Hk,=sstL-瘼s +7Ȧ,e~ugœvؗo+~Ѷu޿/xvXn˹?~ZshzLy7[+67N @;8 ȿC <}uP_g̛5VR/qD't;+80 Z2_AmYky[^]'Jɮ?۾]9.ixuWէ^.+ȔM)6ҼZ:xu+~ E9>o'S+_r ΨQ$̯VRuٶ}Fa#!|rJiϝ} 8/uWNi-}}+q[m_a/'Q3 Cf8,Z~4O[ 1߷K>2[2bT7==?7o˪y?Ȓ%u2_n Ij?#y8ݧӷ>jlmݗ?{$֤d^?2W uaяNmu]_9~ 1(M'6Jd橝,Im^,W>m|{ei.';u9Э vg>AS:q017Q1ZyoNRos:O}7~N7>>9|PԍJU=Pc|ҖiۻWƿ(=NuzIݷ/^OqI]-r9"Rc;r>2|$crUK zYn&oz1u]j'q5)\W3ڭ̡x>G8믒:H(:xqr}ZFpn>Q t t}K, =ȱmW'>D9s#9:G]YOdiEu"6?g}K~[G :l犼xҭoo̝o~}/6n?/Gsi#]5v5^vh!*Y!~=oG}^m$)뤊7zMR'EOؾeuj9ogo:5N>JgōUX22I„,_zX&z[/Rp|iߙ}fusTͰ-O9|[neR"W{*I=!W6d^wR|8ڸsw&*/;De3;uۋqo ҆Zo rFL:4xGΡ)Gq+svoZ *gMwީ;w\G3ؾU}s$0D;ĥ]@=FTb.rgHl߳7:N3;mb=ks~E?[;ٹ>&f%aǬu8v60j${,^XzڹжAK|67"*OMY"6e1i%}/p΍~n/ضܶ2فmO*DKg=O&Ajѽ%泝E=$He}guQ'e?=`k/瓸_v. i -/rz?5nMǼQmzpCB\T2o`c#|F: 뭝v[Jd[N~ui;sW~ײ:+u t ]hGƫ<>}7 @$ArlqEz[*z3%×؛:/@T;庌VEFgIuo=[yH}^|2غOF7YXZ7-gG"_\nr?25NNF9&}=VEϲo?߯*&j:eyox۪6ܡeD}Oo'W0$KٮyTN\~Iuq|{Ufߌh}^mz:hh +tʈV2q98KځTrvt9꥝3;UEDV&k6mH`-s44[G8gVAd!sk4M;{n|vr~TN:hiϪ PDq.?>ܸy[pld_+vk`ֽ޵WxEByIB΁s9wj=\ZVZ1g\'=ܮ |`LzZ]25'}2A/&Q4˨މsBsI_/NJ9=.?|7ka7OY?wVRџ.|mZ}_Ӧ޷վ&9Sܜ~a=GeeEUiwuy.}Ivz?+ zpI)D\OF:592;evվ@I6n.p7eJ,;v$7a-^ Rm{زEDҦgucn?276_klc_`{~:q }R5Gyǵ9hi5=R?jm9:=;_J- W6_8ێZBpl>o `cDEճ8q pa=\+蜀"ӖQ|_g}{tؖlj'~-v^Ek|[x{xyt9@wNݨqe,ߞ]ǢO[ewiS'Jm8no-T;%Э.΢Y En˨^|!/s&.QbUsC}N}ķ6e{[{UM[`^ߜK>2帮^g+1b]s[I?{=q{-6tlUA{K7[j{{Ц҇tP >XK7_]NMm˄voZp2I_Ըɸnm1l[5JeQ}k:ƨ78M_Sw\1Ѓ+{{h8sT~R''— zsm"g>E_a%旪}? v|2QǛ_MU 7Oi:ܡ z^9iib^mrk':;ۭ6ot h,ǏW}E:v/.w)g޻@oJeE]p]7#ٔQ9zM;q׹ƿm}L!n{W_SR 7KKEvZ}̥.f)%6+~@}}8vKEI鏾otr!oە}yܚ7djy-˾?jq%[ijbˆrOk@E˷bRdv*;VG935Xd؟qQ߾,u_wU;zwH'#vՖ6F,rt|ԁH>.rŲ| ]+vb+8c,6z*iV1}P/;w*:U]n!eRĔۍ>ySIO^;n[fO|ׁ܅rgREY*uo7r@'sdsMoemc%&7n5iq8o4o}r_zmo-m}y,GlXWϡǵv^+_ɖzw3i}.Qb;&-=GMzY`-sƿo9ڇnc.r_oCB5mW{t*U $G#qJYAN"P Kҵ"^_QF[%83/ߏb'2nf0fﴮ2bN԰]ƺL;NQ(G0;UѺoη_{^JvѷZp}([iW`.9y5S.ǶC":Pusm?I"Q[8h_1=^Q0%Yt{}=MPZ={ Ts?UsxP9xf{kK-|WoƝNt*ƿ};j$Nj"^_ٹǖT9Mg\ hS__bE`sWݗelgK/We]cZZ۶~{DW:?oҎ'cew{oWpf9E1/eь 8?[{I=8Ѓ˛kβ7SNDLY~JVmd$Oԧ %VE|Ү6eS DjH]q(}wZVdH{Sֻ>YnW&%adi%Mn6YSx?|쵂Xu)OݯeLj=Te_)o8;zJb'}%VjG6XRN ~8p-3 &ɂ$z_3|wt>yLY=m8Q˨uJ{۽Nϝ ]%{uˊ?0 (ƮǏNJPgcgƹxȩ뱭/}w~ned;),>Vğӱ9>ovnOx躽YnKۜ{lo{/_%X畫/ ؋X&c[ۮHfoY[iQje4:?O{V+&9'u~F]{W~ /~_m>49jT|>X/]w|LW~m}rN>_t>' ?<aD[_v>rM7 P~Jdt;+b\J/gXGf(H"Vr*J=,&P߭V|h'@w[NdSRQs_u]}.;x{\%n~[['Vq6Fkm|?b $@@5 jm5*p-L0<==.גO|(HD>Nջ>I1CcIˌF'/ڟ k߲_`ET;~-]ht}Z~iHЭ>y$e)|^! _m+tp}-_ΰr,\o/*Gѹ,/.ZcBl\Qۤx<gg}V`z3;0V u2d!lth@LN^@+s+udcY|w,ZVN'3oHv]UwIJ|tY{rt㵍`ضFLqZi2$c֩v潞@_}tƍO8`ycLovXWW}?#۾M_q l¢OeM*pOӶIQs沌OZ6"tNnꟉ| ҥuᐸ{@n}kCJDY;![/.|(щeW#('o-m̰RO gz 7 yH\W"OoX7{ɜѫd+Wz6N%U;SWs]/GMu;cE6%HJ}|^9Eܲ~_B̟KΕ;^eԎ¶M8[M:be[_XyCR 4HɼVɼu2oAٍ(Iץt%UZz5__$'eb_!"rxstSb5$6έ,ρέױ҂$_]TL#RWX'Уe1'#I^i%?'ohBBo$f wt?"wE}`c-u)a3a Q}+1nmY).ѯ('cƙŠ_}Rמy/I7rl[VZ~s|uNZ[kq{+@u(`~AlUG#Vdžg;% %nN%j_*ˎD6'oEYUyۉUO>+ _w˰@I|o1HڇOcM/wE ve[YD\Th[6H$$ABozgۥ*n34sWcѕ|W"'Np)Hrs+shc|ŰD>C%x^JytogD}m񸰿YJ)oPZ]8Ww*DmVwDڎx}c_\9"xK|٤)\{so0F6Y~(~/*Ks%]d/-ѝeg=? oWtw~U"-,ž%>\ˉzSw q8w88k>gDd5?_ =H- $6ݛsf20e#?psj]אEoۭjnniGosK-IIuz `UHnǧ-=^v2|&;_\:Ώ ߆2dTI>r}Ƚw4/hG-9IղIe{yNɋ[[nۖ%*vba؝nBc"#&wܲ%JC߽yoɩ}]'tm/ƣf|쵄.^t^ -*зՋH|Al$ABozg_:y) \tk˝*}un6lQ^!U7>lqN7D>{$Nt+. [%h%}b*ٿo*o._g}˛oY^*J{m"?j2wsv%dv&cU)-B.xӞܻVc1a]a@TI |̷k[ys،fV߹ח:.zrYďx/H™2H@B~oDW;pi#wUh궇~v7/'Q_J_ꚷ뷧MHYO}M[]uR.w&ݝiHm^}*ITLf9vƷnBYGnUY~mo+_織Ji| }Z ̮hJO|ᩫN>YɻfHsd7v_̰\6/+ҿ䅲dؗed#Gl\ؤ ~#,m߸GXxc)ls&;I/ H- $&/AWϷ[ .moQW[n a ޱ-z3++SNl<8;rI|y{(t>VߞL}x;o J}sYQů7JF[åd[WAqB_ b="41FOקMpXggNk\^n_g5Y#%J>۫Ɩ?zlR>RQ@aVFcǿ+;0$/0$_=-frFx홂2H@B^!؉^}])snh:?DD+Ѿ%%ɏFN[9|/Ku"]S`[Qj:~훫E>U3Mz߾ b={uVwsXSVSqeUtv,#]&˞8vK?ȻY8~'Ҥ4|(;fmszͫlm]Zh;,YM]m%J4\I-/\8y{^EW#w=6$\ZwS-Ll?;lYMp3N.]$sM[ H1"? +c'6J^tM݆;q:HүV7Y9a&)e+Tg V:=3jn[%_-G8-'$hvOKR~ݦd׊G p;Nͮ!ӜO61z~yI\Qtnew^g$Ŕ %B[dh9>P۟eɉ1XEmUIY/clҰۮw=$ݎW_ocmcK&Ʊ[Q"?ҬEZq2#e5v! z3;Cr p쯘W@EUf8 HNxD|ϒDH6qP% 8>iToEzC;\ yOzsmۤWIҹ[+LO1Do,A %+e,_ X'8=p%Zz>k}/;'ڴ~JxLٶQ,JMQpk7V*'wޝZߎۿ䦦/Y~5~N-jɶq }8In]2KL[o?僄2H@BprI=}QluW4maܻf嵮 FDyaL"w JZWWɻ"ܲNfػ~A;W9hÓWoMַW[ڕrY6&ZIngi~}Sw|斕y/9GZb/Wﴟɟ[[6",뿖q;l{Vn/cxi- ,i(`u4yDaS',]vH-y7t?hr ޺2d[m x1yWj1Ъ]j1m^ x+T'__]%sgb/a4ׁCvZWLʵOlE9g}wZQWB=&6p iWw{Dy%ml໴ERD;aU}׃ɀ]m=Van}WSr'Ůvmi"}T)L/ʛ^Y.ίP[hED7|ۢ[l&D{L)c.Pw^ ݷȿm׿N2u $f wHͻ*t S'alM9ϟoiOI1ɻ*=St.sF:LBzCøٶe~KҧD'wE~m(^m/Wliaa8> _aұݾfڡmЕoNֿ;3P'V}AH1|?)6eu]uTmmAo4uZE4OE|zUV6ߑȻH_[%>Uiػcw)61C 6ɧ}"%QD1C}Nle)?N$cgzUb=bv]2^C>倄2vnܲ ~!Ϙw8h1ѱ6}*䊐e 5Z:cyk"?ؗ`n^뿽ӟ} nÄq/Йc]YAXnʑ[-Xc'Q5u$kY_Y/ ᖛ7_|U6CF0Awl/>Dj?,oJxX/_]ِ/\vt?s)VdW|B]_wk훾݈GU{5f$Z+ F~_3SweЛM_r]{Q'}B\?yVڽe % q"m'{I%g+E^-eI5&v~3"?Nz2rҽeaVd?kVثNـWz{`v*oT ejbSzZgG_#0=9yt^21,QM_|2uQeX+P\J:SO.;$׬}+o k^!r<iQ'\}HߍյWڕߋeyEgڕu7ԟ;iJoה?ƪ<[qmm}Hޖkv>'SfO~OF'qRV?;&W]QE]W8=v$f wHmԓzy|h5O1vuoܷ2niF+v(c w^+V"*Szc?Z]}Ӽڤ*{qз\wu$tS#,%+non빤V)F;]VrHzp;0w.{٤/h:qOƷ㢄Ѽ_ eCYT+ټI_Գ"?J9y&?_gЅ-NZVtA'pZ%K/jdsE[YXqn]%`p:[ H]jHznfW+p[YKDʩuY32LR"'~]CXW9)#K9:ﮮD>1oznꗯN`c;>W+/u\$3cn(U$d=܏e B>'8EW#'Y?[Z)svy?u!*eI_T_hټvR 6%\)O۬NꤡYF(mJ`ML4RWw(KoEz.دﰸuizepx\ܗ:mj(I/uS47dt(}{_\]M eЛeE^͗djneh'F6A%dm%%ߪdbIeI=kr:#Ű*V Z؍ǞZ91]ƌ;"Q?L2^'ف[MŭAzUw7mYfǿYn?̭ptE^WG{g _Ik$F r!Ezm-]*>?j;P<ʃ]柋֫ɺ፸Z1^lc%/>u.EˋʃW~[[+HErrB81[%Z.ĭyk^n]ΉK;qKo[8,[m넝cV>F]6W'ݨH](/Ε\ ?`O[C7_ysUqQg4ULX`rV<|̩n~Ӌ밆[oO z 7 ӥ{_?k-oXgēiWNE^יHm'#ڻz]-k+t>&ΪTʻz>~O?k 9Ϩę79ޓS✦5YwIr)B#'6\\q[Jop蝎L#"{;uEgC׋Y[m!aGVR2xǴ{U;v}|B)ѵEEurmlVjo*t2G|wjGeV/MrmױΦ/%lmEMz`+NVO^wEdu0d2>s M{{µPgT?e6J9;'rl ' =Jo)=r0t;]kGL!e:9%+|~ŸB掎G)G[9% "${.q" h1ʟwi3^1fKrJ}ȩ呉DKy=GD >RTvp/Nt)GϝcO(*ZFVnkzT %,WߏZ=(<0T~$cY~d kwb7erjnxg[A5wY[ .kkr<(L}  #Z*aҙwx+缿!-噧G}ǎ: .(=p{G#tyb>nRF9:k1r<4:zmNY ^JE١9Fk_C<`2{*?#j2,K)1`b_?di =LןqVNyٱK]kO5}7^&xyTlqmQvS \g1ς7<7r?+kol?:t}z\}: fO_} Nm;c%<Ϸf7[YTv@$uyG }O⧰b6x%L1[Ʃ AJμLxw1I652uI3m]>&)fs'Ző1lx8:l:.IXi84Z1rC~1gwq̎:!?=oY3d{3olugz8yH{)^iNdؗ v2|'/m|c p߁CwRɤi,kFnr#%dh%:zNs<e45B+5Crϩw-8tމzȌ YvUa2NSiCYy3g.FuPtdz싟#x/R[FbL0"-clғ/6gk!f썐L\,Yٙ7ga'[pVyoYᄇh6}EVka+[yL0S4`#$+fδB,f*^g=~*?o8mʑe3Xt[Ta3\b5^; ň_+߰΃ZZ9#l~8Nw[+krr M|/wZ r)dBfkAju<[+3AU~DZFY%[ָ/@)HY& 493x2z

8~evc?-:Mg=m2;of?e3]{W>MtS=p_JmiPZ7 QXQrRhmqH.wTG&:ݲ)4cErGY g8?[8~#O㔏=Y|Դ jF^}kyܓ=һ}K?M>@C*tj#ڴ qyr}Je(놟WWySѮ?|[H3'& ߴWߝbV{oe x[.ٽ~[~8gu5WLpzQ.}x*kLKe(^k׹ג: WiԳa4%6?ٙw \o44ʖӽV QkB9HVO&[7zUD1~oG]o~g},& r_|/k%T?ي,^Df9\fQVbups\;v],1D'bTo.;\V2̷qe\̟?,=p߀C?DjHO!|^kZώ>a]2!9"*#Bf}O;y[RX9Vo#^)xsP#NɢJiv3,وC>0΋+1780/"hI .y7X/tXׁZo5d{vB%Ua;MzqS4}fס2%8},=O͢H7/'72o:RVl~oI4uY{'s~&n;DbڌqQ؝qn8GΗ?O+>^=MѐQ)nCWwFb8k%GxP+S0cOP߉&Q98܊6BcXϳw7`VfLl6+;.ib@[^}!}8;; @*9{>s]sc:ymdG\; :F z>,u$nﺓ:iwkN\hn)Huwus I*pCSʿ"ʑ9;2ˊf=^yRvoIe6ÒQbbG/׿gsߤ_#gru3ow\r gicn k;6.O1e+dC%F0vmZv6)8)d,w@s!;g܈7zJ{ZdEb⠨v[]׾:U;&N>Y]I✙;H'w P'ˊ /c|I^g;><uZHw]cɭu- KL!SSۤN9M㺇{ P [#ޑ9=L #=ڟ唟ãֈ,^{]+)rC/=]cl!3H֛ Q,clWnguIN:-<<ӁuAů=GƷ/Դ:sl~DUwY/vim[> gSB4zRaz(9ߏ.pM:8I5;תZC2.9~/y#\.:ШtVK ?v 2X T%&zw);o4Q9|P3pDNOF~UV7<w <Ͳ iG۹o 2|WˆK`dkY'rwxH|'ߺв&>'kWzIW {zpO)Jf+aEO.3G15D^3]U>yM)Qsk}H8ySڼRD)y'ࣳɚ8Gn˹g+љ<)> =љ  ǷqDogа7~ zs0ѕ"`&F>?cv9 `{u @1~ҕOw8a G;|ZFRi^u?ΊQDlv>礄֡U#EȜ$*8z##g+G`Ef=u.OL 0 QA`W.QJniøf$ y;xB\wh`=92R[rck]J ϒ8GZ vQl!,D*7ѰJ; Js)'CoaNAQdZ z'=k/.?EY&irw6z4L̛)`5}+&O7cџ#87ØIRotkKFAYvO)'ooCp?{=θ،GL!KF8j@ge zpV!Ԋ 3/9o`/F2XIKƢyߨLT`1u'rW^K΄kpL^L'SeE kxYDyq@Oa>T6^lnL&Jg[|!p;c 5G h"1S$YHHfy=V+è4R9K1\CpYGJg6bj#;լCp@(dr {(DË.p.Uiq=2D'w"fإgR^v c0N[7S֩7a\Oc at` C'ap{4KlTqc!At],BO|c;=pglyeeƗiZ~ X3ԈƩs|08&zAًy]2x}sQ\21+㹒\Q$7 W 4,Gv X@ͦ`FoVuے%y+yG>{ۿLe7^hӭ9{/QF̝Ae&cN8vYCa얉Q\v<_7 b{na_}aύ?/Yn=5?\|#T_R&-ـF.(X]x3ϛ>PK@v9ɢѬ %6CO⭣auTBW/,- S DꤎhsTqu?y%Y&aD;FckwPnC{.=Jtp6#VqǤGJڧ.׽`tJwBGf!"ϽDtO 09MTPjM]^,Pr!*OQ\ыDRE|&U Uu)Y[lwݚ;g=l{ōo)(,}](F䑼dlS-GӕffFeAdw z3oQFA.BaˏB5L*(y(N;ߧzuu&ʅfW{_TDr99 Io7fVJ'Md"^Rqek%3ַԵq ywT1B$1Y T种1Pv Ͱo> 2 T/zrRs/[K7Vg{!UgeϺI ⠨8 5?Wgr6(W+U:xsvC;.?F|(E22LgB=֗Ų n'䡇([}e0ρ0x0xf$̿Eg"7crkM.@5] 犘ԝDFD- &L߅]:|"?j%>h ۡXby:kmev/Bt_W]KY֛~#VPiMje{]"t֘ɗəwcxw< 'BM$V ֨nneZz֝~YL<*۔jQ~CvucfxqI`% QDl=#g#k>0F-{O|Äi"|PK(" dexQcuP<8Yz_um MUshJ Yie- QK\39/wպ߲$=d-#Sϕ>&kL` ;9Kx3 хLs5U|mk`{󤂨>?f7qnmmʕ?㶳 n,3dq$Xnu*j` sUK?[7ft5%\Z>}LEer=sBzW;NuN r֩?eH| @$kER<~D *徲pn8q\r+U|}C^K%,}JV`l۱%bI+vf{؜? ^૮6([)cnI3Ybkk^^xG3<:PJoum%iNJY˔,돿]E4 y^^*72=;[k[:yϘ6K=Dyy 6٤d>gNtṄ?[p[nˏn&*+Ϟm̴~j{N@mجi"k,3;(]#GXR[d$y&@gy0QӴ6ԯhY݃ T}DϺ˭鼗UI*=v3g[++'7,m-2gQMD+>;жoSvsl&͖;9K+uҷOѣmJqQ2r,5vQ:y-PO'3Cp>zޅ ؄GUgcה9azX%BhQ?6 e{ i `T5kr*mn1 Eyr#l-Y-!Sn^G{ >ksϑGzm^yNަNxo@_%BJ_"Ga[omp/gi7ZY>PGCX:]QzQ B;Y"oϴSƀj2lf5jrMb|Nޤ wR'o4f}36fȍП>-y%K1X[;kzm[Nz\~b 4A*uN2PO[+m| L `8ZY8;k?gi㕹ny+om-;FS?ecE-gz]/'vc'rF4g'qo~̗:OriC+[EVh)|}qj!Z{W}u)uMHHgc{A=GPhȕb^ȳ}943m[(9X5=Fʂd[yn7_&8k^j֌p?;=lscF>g<~H8)b㊍XdY1n |;> uu1ӡwgn]EY]zWHpej(9}C.=6tY8W;߬lA|^9;ȬSߡu67;St6$('Xq{vg$ܰ;Mϻy@NztLSɭr+kw\QT@^ɛi#{v^ԥZ8>DY&Eת?1/SLQ~2E|+CJ8p zǞmYJ=ژ^09/S͢3L6HE&rq6j0c]P؟JtI*8[dm D|GA֢\}Kw _fSxɐ&;|rQ`pq#è%혝oA -9"*ٕ.-y3d4ߟ{ apmd`M&! JfI-#rv=A!7>>erG"s}M>[Y!\EY6ys4nळ=8122 dͩdle.7.Vn(" /T-8 pq175dmTd1㌓ PFN'_12d|>z%aۓ+TZVnQgfL1w]'b_|DMPu.NZ8"-GlTg?Oϫܟ*Al~MȊK/~g>h9ῳ|8gY!"0̊<,*xeoQcm=p b֕ WeʗA.]qZ(hGX¿VX(39n~o偗C}\ߛï,o<Ȟg*fP8y#[\B=;O~(M YYpƺ'd%kTq/ ' Tv;xYX=//m$Y{f(7}@9leF=p }u$DɧψQJY#q1KZ]["!ژւ\S}/,8ِgA6$l7:뙫(o"H)q3: cTN{_-!Jx] bd&o]m6 b;ΘZ`3 uImKMlDB@T]:sc9dINH-=ztX=Kmȩ#cEA2wT99D;SKiyR(Qn `Лn' TtG bgHߺe_^1v)>j+}fD+[wJ-J_ܳ%hI(T)k7 p~̾cX87=C!v&ث ]<`8n.?4#D ($k\TI,eGȋkM3_}d5n|ۨ[FNQSb3(&P(,wZrL#V-zzx猩ҥ),ض'J2\oYU=\WJ&+"s٭$]-aG!K:SkJ`B88(4 = Ҷ.S?'sHz` :‡1Q[_n[=!h6oH^sQ4^\͞cƬp׹ǒ4Ej|o7h}ЀH(t̕F5yv$uD* F2 9Qv cqْ&9'7J2UdXRYZ6{Z?ٳySQթw6X8G}_"vq0v-xQni=HL+R*+F dLrd 簺&݂UKQeäy{Jש2y8Z9h3a(\C-瓥b.Sh6ҫJ!Z8h9:,Y-t# ;҆);%\9YT+2bJ&EҤz!9d.};1NRٱfGe"l&s,ԑZ>ߊn8\xȼ:بԫZo]?\ض ׹XF'|DDѨ`-7:W;z,><o?uOdLƦVw#CCR.?6p]pߊ(j]DdYA&tfM%?ČȥQԥeoo?#9dCyoW)JX^n2j*Ft촆ncfo:Gd_8}=8| ն`?}̻m9Cŵ ^;{o~p^9~e~H>h)m%PE1*+lިWr}d ?|,F&9ʓ"FVsqdV\dm(I& gg:Eyd$Nso+'EΗmH=/|?QqggYr}s83]wQeي rU^JtQүǶ+Pr>ߍ?&9Sm1Xv>MU:*=郦*ՖS>9e~.>LC|9upg!:sH Sum3I61(:~xag[dDYWz^~@5Y6k8Ƴ6H\zVQ:Qv 9U1DYm&פuq1Tmlr߁?9$w>Xd1gd؈~wRU^"7)5p8KG݄NM\yeM}2`62lAr[77lw۷sQŌ^vYG\ juPrQUFrxsv = 7|sݭQs0OtZs߶g$sT#y{١I! +LpĠE |PϙlZdhֺM *܀' 8u}JpMX Q3J9̈́[B!u)ْ=c;8~8\ʴTdU]2L| }y+twC?gttu iNI0w=:. ktPu9 k`y6sɛ@X&9h])E~m]I+ WeU!s@L C yE}s]M%.tFtWrd VFz;Ev{AEL=A@b$CFe\`G1ZVb0sУo3X*R.czʥǜV ȼ {lu&}=ɚ+6x+7?]8Ha>~p[$VL'sb.)ՌzU@ukYȔ@KD-R[d>ۤO]wɼ \pkTelF:n|{Go)TVU#e}%ݙ'g9Yg_ɲh0RI@eYt^xfXv>Ң*l }(nZf*25~R'x,]m>$z\}5%}M/}ȀC9 %:F-&L{1~=D1ZV1m%+/B=`Ȭ*nMr6|,f;v(_%Re2_mANcA"Z**rrV^mSs:On`/}Dҩ&t62?q<;sn*Nv K"3Qr nrWr8_uB\*J  ߂ 1/n(#w6ˆF?ka37^Q}*1횲 Z 1yʒi[.KDrUEsV, А5\/f.Elߜt6Θvdkٺ,#uvn=Zck\?\ C5FSG~% `AHZ6>8qګd7O4R@l`x{#e1ڟBZfj%p`{7+sO #٦>RQ@.c\6ٜ 7Ey9[F"61`xqh*\,:NۿD[dCI;ڮ!%tDx9$t]J/2(M@}ϱp(*浫 BIE8zƭ7GNt6頂D\ǷuY8 @L?D'm}%"@EL=f?0GX;#?WfOFņ7'^Iy5՛+jLuרLXrRiWj2q2[~fdtGz =,wue@R(G-*;G0 ̖,>#Fcl>EY[^RY֡|,Kߧr[j|6ԙ2.S%ƬdN4#﹧k}Y$E TZ2[C3 odyq9VY9c0W#J12VtmFupY}m;q?^6Wd \RM;0g5u#Zs.^#rr|dR3:8E{%˨Z7%mGMGoU1cz{(GZhԙ,ਲ਼M<zNj\_srYgoX7Qr ^q"D.i!AT7ro%83,Qzz6[*XWig8@dVӢG_ڸ|f!|K4Y,  V`(b:1eIT˒&Gy>.zRQ FOk%0ŭ^@XVrk3=u',{IC2#2̛eeN>>ywݢbP#;,% +]ܐe&fLAGrÐ mdi+ 7P'{_L͈+܋=RiGdITsVSo˱ F Q>CX3ҷtPL_udMp/b}8簝Zt65zz`@A6'Q Yp^#>?9afaaʩƠmiEVFg!l=y}ZkJE=bKn T>E2v&y5Ba.s;E!C++u_G)-n/!KoW[d) tV`/C qd"Xp,%,"r͕rX]_`BuB=*c sr~Kqf}F3a{&Kǯ`:ײ$+$p.aeTA\U6Zd^AG z PۦkGS-aEzuS3,gSWmLdNu zcN,7f$,<|'!LY̒ĜAC3vbH<Ĺ|43csܷXp %3MW-av|E|ֳ4B%ӥT yK~^d8QI(<8t rKiBh$lw¹pP&Y'ŇG z=k\ͨ5LAeyh#8E9YˮK o"z]P/UBxCTl^8v"4!2{^zl\W۱}EfC 3~44v`A$rnm3YXfz@8@ kyPq,T+]|cg0rgw׵΢lY)6(Ɓ0V Lj*I6L@@&p+N2}l$}Qn%F2u}ssg3oupJ#s]M/ ªiOj谶36CDV_l" ]e+aDl32$L kجfYTժatwmli7GYyz>Y˂rC/Bَ0R-**k5=yG.&h(Kۤ9OK*с6<3ïuG%p+ʚQ o#Za#ED:/,VYbS 2W柋)Y?S"2V)me);C6Ž;-N[5ߧÍiTg\(Ϣ:T\ʿ[t'O,d*"cu 4Ne[hSX;':9ʮg]2d-}]K1Vmo/`c C|$AXx95&nNڇd_SQW/m`V3D YuIbzbI0^%2&p,E=U^mbd8lWTl,rS_CfY#G'3/:݊yd™zD3c$֔LKSY]e;W:l% ?'oYyĘ\ %3C48ìnHe0.q=WDqk:zT 9<Uy>kiDWc<"1,'"M˸E.:c7N$$rce#y<@$AFkX-ONt?mWD>,B3Mz!ybsu+wڷsf"қO "D}E's@w8ZdeyCQ nF Jk! c횕)=s-9% &_F 9¦;s\fIo 8c&eWZ)~Fe q6F\Rg.jlȩz7QhvawU)+IKQOJrF*)G% ȱ%3 i:ompYvw>b~7x8Sɂ #ZgyM2~3R?LcVT˅Оd9Fl埭|?2=ɛ~)Ĩ 6+IB†x."Y-Av#ry\F-pk_e;8("I7\)yVs6DƑl m{2b[WXtK+ռϝO[QLYKoO"8@BuB ̨1Y4D 5gщ28aF->ێ;z[GiV"գX9sY6[ּxz.8cpQ+ &e|u)i5d{ꅇL;Ywҳ3K( :Y1>E*kc{WS\)8@iD9 |fa8D0l/=A+\H6r~Z; e>6rZ]%rY1_|?kgjums~ޫ-ĉgF% wD,2V Zr)bH/@S/̟J-RJiY63s 1~N1-Ѡgu<] E|ޓ d OYn#9O8w%` L? džl>B^ЛSNoM6S ތ&j!?|Wdj[8@:I(y*6!!GumBdeʪ{RQ I{(‚g.xbx+we SPFuQ8fR3NQn Qe33unDzbP{ ,-qF`ft됊˹E`o7ň++ J-GK_;yiYLjr,#Oez ҅lRAg(djbi=sIVF#;mF ? EַI]$reCVO}RrɽXh,6?џ#XYppv9yk),v7zVg\6i?siǠvFCh}(`YzLَ⸓؎!pR[<68@eQ3v]2 }:\}27PcYKG^ois,b337:+ƢbIJuwpF׆7xc_WDFU}Ιmc@(`3t H"@itI'y2M4L_C`CDM1|\z$rA|H0!I ߨ-]Sv)dU˳^[K`)ho \b%|x>K*Ec; yC1ؿf%N:Ccgq(MDgPsatTri.S:]}Sgh NnJ;giv+4 bzԓ* AQ)s`og2oT;5 `CR >N^ڑeRhڝFS5t?, 9lO C3ks#3_յ gIP=KFQM&Y볘|;a.j;G{\|Ԓvw8@?F2amg):z1ץBv.>Յdۀb/mw ;=DZS̢t9{E,SdV{FQvz;z]o#CX[zJVç k^.b}]c:-=6-]sF7` Ekؚ-gـ|c\Eګ/ hR(]NN)g)6J7HKy\3;wbT:ֳoqY-ٕd?#[ N= Xȸj#죁hӜ\I%(K '$"j]cFysyrh63Fa nCZ ,jF6.=J=d4;FbO=SzC#'8X1_u%j^.SZ78(3+ry]"FUFxѧDFYprFGAhe?>DeiFzȼ,;e)$01*('Ёi4d.DB`oCD.,zxG ɸWoFhXC- v~2pWg~2ϛ JY^wiR/@*TבYzTE>T@@eP ʽVo*j% mmp}Kѣ. dԁMFጽtmItxN] ^..1o[ȹ%N=|ߚ2fFpghow@ f}.;!M-?a!ݡ FR &L9:0-)jTز4V!5B$4:!E9䳬<#g<#oo2IXN}O? mfu1lꄕXM杈o5vQUUO21r^[4aT6vgIN9n%o"Bz!)(dWkH,ȕ[&sd=X32]g,Ss`S .'oCboa*9/o@<Ǘ jKf `?)O-Vf*+ߴxQf"ي #L[?`<ȹ"ud̒18cMagg,/+Ҟ}b?ʥTo^hhX"0H1Q2TԿ˼z 5Σ__sۈg,:}O:͙D .3ƺ$,i[v;~ =l|^9D. qq]T_w+'$_>Q 1@=3KgZ r&!1|Hh2)^VwO O ŇG҇ QQ9OGŜsa2j"]vs5=m?!,ΥdW HY&Qbv3μ)D586`aڗ"+Q("yheq{kͷvG0ɛ=RoAUx*EYJ8rab%?h nks߃.# ^qt[$;dRa3T7_z7+ehVd޳,r 186XCf~Գ*ʲrD]PO+5Ѣǚ/.ꪌ(S}76vzLkYv~o.Bn{ShB7o8@@43WSGFpxYɭCAٝ`wң#A0PoStxCVɃ'n? J˨S,1j<˽Sn5YOr, b`Ʋ6e}}@.>zSO0s}fd JM~بf6/rh 5آZLSeK9>ނF[boQM&Ye NlN?Ӣe39C=CM-LW#6e"VJ#Ӛ{$#iJv_o5*8VRtơUtIҏF.c#WR _G>>#8+cxٺdɵ( QReFm}lٗDF 8"]-&|y1ZfH>gna\ Blv(E\̑{BY6İ hI/ה"-Miu72Scv.캼QSn"2C =E\ձj騃Kf766C Bs]㣬_L|yR&q88oA.m3ʢ$,KX8I&QD_G熛y]ed1's:)efeǔ>f]}8\Vgk|E7`ɕzOJ.!80sgHl]Nb6VG~%`z`ͩK2Prau\t`.g Qi̱WB\]VKF>Fs?BZ' ,8;Oۨ^ˮꒆ'Yda +(ċRr$Jx!!uh#TO+!s%A*fwy']|pФ̢l%C;~gQfV"Q bC 0=0&g݉'mͪהFmva2Rb4YG<]ysYve.aTr8n6eMȅ6TG mf0H h>g5Gϱ&" Ѳ/01_#Es?%)=.* s/YbSlLOp a5ZDNΘƨo~QaD(+5j'~˟0_cke G*q?!20nϡ9~L=m{uy: gX=6_ʽ lr`8۠9 ѕ\J$d}rYly|DGCz- QdӖYBiZe6oP%4)Ud ?aO 8rnH( bF4rL>MY u?Q2;|tRv83HN&i ʾkSkyLCRoY<"AI^* lLTآBf|$nV^A=%+c|6ˮѺA?S2Fe g%Z2k7+r}3^-:Djz]M*.ζ^D`Xzy pnq\ hCc ghKCOvHƟ= z`oF昺#62.eVuy"|$p3Gw I#hw9+(kЍP nz5uNne޼lhuЋp1punA卿$ЌF,FV䖻z>)q:y']=@t0_ƨ 14c#5G~6[E)YxY1>k[m5DfZ.^X 9!rn -y0wi4wybs8[[]dOμ+19TE,بñZ>f ~n٘1, c>&Ut[YWl^#` 8NjIʦe1A|y2Y2; 9EO18Wԧ,#ݠʶ&'- @%-p4C_[wŵUS]2? +w߶N3ܔ|΁G8lԷ8Y YƩ7q2e&m}8W.Q6*Aa׎ā%5ǐ6fߕ^\^;C+AUHcUyo\ ʫVV[+Y4O ^<!9V1pPh 98]όNgdO(C0eУ5u%[j8YgS|F l5 Vk.my0+^4 =~:<'?BCj|^r3+l$aBMɘeYw2Qc]gǨ;R4yksL-2Mf^߲ܬ,czLY7Si2V3 r;`HEZ&^%@MgC_[le+pSQ^*dZ񍉋:&s1OgQ T=#F p[390+n8]ԥNagj# Sc\YT,,6hor=M gqU&ey+c~_?rـu?U9˒09|/]QpֹtH"E 8k&̫uz_&veќ;ۂS8RhyQ7@p.JbF?>2N٢a^3?FK|(Ogm#= WgİFXk(l6tn]pp74ʣ GKxF٦ZBDeXr杏#yg>GKye^hٖ˸.&Xϯ2CƵxyg~/C& պJ8gIQ#di&wQl/d}(W/Ue2&)Ig_`J5s2=t8';?_xd8FA)|;lLI ;x n}˻5FtyIa.&s(ʮ,ٯٌٝi ;&VTM-2)CwˢN>-[%ɚnYW`kH_jŇK8\>7` [K2tmJ1Fi"v2f#-oj:28Et."UHTLq<]~gz/rͮmn#kVr{8<#dQQzló6tS@^1j8psz`7Qׯ(z93(j1my!k,M>!#8<JV(> hLXRϫ*[xijR^JD`_}:e]MwʃO2 ?~f#NghcA]~OQj:e$^3@젳ȶ\VvYɅgϬqYSz:~'L=nEUST[m}!龡r/oΕ\x9zSO>`Y+߿l+v˼z`ֿ <$[;J u^R}PX=p[/SQTLeli'9RLtc-y(I c6Oz,9gB*AbLLلܟI:j;Ɍu2ʢy7D* ѕ~|COg(vmUFpFh_r۠p1`xPKJUWIYG}O;^s[u8 n羭q)gZgnB/FnvOI&u6n?ӟF|G/^V_(SDgk!]KѢYH=aFL+E.1;lIW-GNֱq@ק^K@eo1@G]Id}G/!IQ-Fdk2ߋܚ̉tc9uI76C',c)6ҍ3ZmrTEJYs',*0? K/Q9N(B6sD$Zn;ٵJz>>ʧUݚE n"q;[muBtlJp57Řre䮯ɹ&ҙ11BZƗ[gޕ 2;%߆y\m7dP*|SSWXhQ6k$[v Oǯ݄Nzඩ7>Z0ermL!~LvϺ`k%jiERe33?,=`Ֆ'?+x)s}Y[F{t南Q$KoĿu:ki V9hJim3G|ډ77̖W?OſApզe&,}|̃Z`ꠃʨSfv,nDpgff%]|KK֜-E>]_B3k2a jrYWy,}ף"EGGBdњJ$CgELIQ&]>I=? -MqIG2*_-JN5l0ODV'lt!dKR\PwYnKZÝM7&w,8Z)cU6lϻ,L~J3ǎ VG\yeXe3̓ Ȏ<6z4|2~֤\pN'I'xKFlz#K?+꧎DTxh [n6ϐ 6\|h_Jٶ2&WYcVU &Ĭ2r }^|]%0qL=2(D> lP&~ga)<6{r?3Oཧ<Տ~ȞSrB˦|bB=eHəms\rVScm+vC{~fH?YnY֞VDcUGjf L)՛mk^V7&>>Lyg[{2Jo,FHNXEOkawjgqd9Pn nbbu$-aKdwsfyuj-Sڟ߾[=Nd4$Qx6{iYG~ļ9t s|~tmayP$CmVsj*ۂw z3v+alIhwU]F"q˞2 yJcG.;;` eÐd'"J/rq-{KId b9)z=|Eqw:ٯO%;ZJ&&5`e8 5-1/Ԉ׿s\֑x6°6^QAY۞ޡ&AORYxQK.{(H2@G>qKa܍^brfD^y#.4߈ @%_DhԵ{S3 Tr6hj1ƣka_uY6b(/vYe2]OYzp·"Kjt3߼%-;@)%A,ˉ (*:}:8R-wDvN[B~3 uOUL8g4G-],_ eVV%]yd4>c1'-j$qBƉalx<[ٲeDib -Ϲ11;M5҃r&u|Т;(;O4\ _x+.yG(Hj%Li -B^==pgCtH0 %H0y)fFlyT"lw)=ЌѕJV[~ǰA?UlAi}t>X+pSrND[.j[ 7Ct5#O6+G-p߭NX(R 1ȼeOskemAc_#]vx\Vɹ)8˦x=ڦ6۪h1KK]rzscg5~>z8fo?Mž=G֚XB6w@9 U~$mq;_qoff)?!2k}'Isw=J;lx (ôϒQU,W%SLB䃽5-l?)5].6Gl|i#}XNg䊎u:reͷY1dW('?JtcLa\}b2VBȲt)dLBDQNeA;tW?1KferR~Lj&d{8R\E L e볙v?C|i poy# j;!(}>g vrANCw;MQ&B㭾;27YyCIڵ(ubW`.[p^Z~XY.kL~TϵcSbOIfew, Y{! p$Ǥ_\#6 c3 :ٯ1>ՖKs'zQ5Y=JD~,JC"l(Km'*H2xzu҇YAZaKy5Q흨g?SwΥZ,R#.Q |5?͘vxOZu:%}1u#))H7yj(YxoޤCW^;~m$XeT}@Ad+ bwIg=v'X<>{ǥC*W: U/HHigfk϶(XNbz m]=pר~-]dR++;=A`WY@g0*E+yp)b%ΗD̟)Qb5G(2u`)6o.rs1iZM0ATuGЃ8Щ3XDnNgu9"1YY)Y:[&+o[KpؾKKSgf3ި>ǁv۾ W<9e-eY^[%IrųK wyswHgVgHOQ$u$63sOYSuFrG[ޛ;UΎ_ks]m/=W(C+E*YE]7`Cd}矑eY؍L .6k7,ƃtfAi2>낲xΗY=i۩XGn$iW[:|6XPBt>r{!/lOW32t՚Sv~K"Hzv*ʽ2Ŋ#Lq?5a}Xz{K:U]=c}= M y;VJOWVF3E6~/!G[aN[THglV KYu T+3ZWzfw V?B,Ʈ1魾O3d7^_y0|*䡝g- V 8vdJm .V@IQ6zN72Sӳ+rYO,2n::]{,)+vRO]z3S)z#ϗK;rKs4: ah=^Kq~x©nٞzwL a$}ZYSf~~Cx=:o3,l3q٬mCLo!{(LtF :Xy@-.'P}detL]Z.d桕(VF{Y +CbX\x_)0e^_Y{ws3,L(6 ygY̱1ҳn;WŨ ս$Nm16Y?,rl)wN}/bjtG-ve2fDcgYv}T퉧>~ziOPV̼ռ,ve]^.~V\뀬yɔMwŔw//b0:ӝ%c {M(E0kz?ڵ;o7v7@?=NEy'F;inAd_ѫSOQoJ.dIq}NF?S7ZsOm'@p7C과sDK[]v:НpwXdBY0K cXa?=fN6A5LeN<U57zEcU<RkMbEeh-zrOU9 ]pq|-YPzD_]~zQW:ʾ%a+lGG?&zĹZQq|Q׾JmNN:ZZ.qӰc3o5_y}-]#Dm)Ceq0r/M7o8QLP_C4]QxG#A<"f7Ǜ.G}ljmwyFUeˁ +?;μo^ޕD7~ѷ,ډO w=7'kԯ{F6od w m==pϘpϕ2iAk aȲm(XxЧjϟ}Z;<:~$ǣLpyn>Y! Jفvpy`mZeژ9#R['w֙WMپX.c֟͂TEؠrUʊPj}NU R6&[:zd0Rhb%&sm,B p rIˈ|>,ndnsg&]ڍc&3 Xl,ְbi؍d }^̵\6֞hu؆Z j컾4 3zy#/C\܅3jI*KLp{KOog#EST5ptٵy}n{{Q! ' g}' VVR^ |SnƨO F9&gw9K0h:ϒAnk%#8̜|Ff&,=Ng>G)0_~d/r~ZGZéѻ ~Ǝ wZ&ׯww {zޢv)bBvAx;a)MdIeD|JWj'O{ʹSwJ51h;J2Ox^[Hllz卷TVoFpmY1;EYܨ.YKrL8A3AǗ~)b39=qηӾ!ﲆ3a/:=D=5ʯy0eAJsu2=po֟ډGNq XpSG Dt?fU guv1 ;^7+W?U?I%ӎogD *aeb8.Q>_.Ɗ+>}]^׺?Dvҋ`D͌'s>Xvi}ϟ֙ :(G֮%9s[ޥ}\ܿdŒf\8,]7SZn-A1am8g/㋒5=A,Y3TFmI)߃Dǹ?{; b;dD,ǻRgS.ISTJ_̌}4k.&@e|Eo٘9:_5"ds^3gȔZ#L/d,\gV>Ge2Y~aiZηq#5~gM,jy*Vg+oARI>g?Uy>/gveְ2WQ:1e>_98&tBW}vaVQ~ʼY{֙G֙wx+Cݑwm,o3F|VHd.XUEG.N lz-@"k~Ed'o 2gQ ao\?f{&uG⺸HKC,e-^2$ HʮJ+8dR儶RLGHѕDT%Vt\JYRh" i.h xv 9Ow}~{߹wftV22uW69݋j9q>vug8M=rp9/var*#uҵ+e[2⹫U|{hkAD24ȱ>@CXzjP᮸Ubs yMe`)JRKao\{#bȘp mous:cVJG.}Ɩy[")֖Wĩ8qM=ry̼70Nל43O[coIW?>T٧ f-gV·kܷsOuh}#ғZԍLm{ e}Sc)ɸcCBPH3Af3=;? kA%Ioٝܖң}ٖ$-X0K i3 Z=F,/r=>y'wĽ֚bAݫ *d.A&r2TYOUqrۍV";o4L)achw)_#/^J6 n⣭HLVSӛ 6n\yTnK ۼ TYlL?+ rنשָA\:Q\x2Bף뛁ib[xmDF7A!Aoo:yY+yOE@nFŌR3&Lzùe_Ο#L2qu+n׬nژmٕ8vgh‹ 2sJdkXĖlF]2t 'MଭI6.M5 _V$,&c HU| 9Ri̼D,M|Vk,B Y"Xspj_a@$R˼!ޢe6e4|%V=.k[=GI t5c}X&&ܲb*따̼^Bnن\ G6V~N1Fek(^_.bso@=c84Oh葃G޳CyebG=(r4固LSr6(.G=\JX-U^py9:Ǧn BͿoebXuw)[Yζڛ3#?5ny/ϼ%?>B9H.|;J-݌WZTVrԼ$N.Qր+ YIQhBtӺIޝlhN f.k߻CgQF֊WZn)ew񱧀ӿ B]wUW]G}̚ia1kSCdUCzPJWZg[:!ؔdW&vnIdItmvjyZ~=z'p˦I12~(*5c:Ʋ?%f2C.޶(W?WA!ʋm#61Q/E"cgEYҽ>ǖUTqiI8=u]!˧5aVB9鵟zr`J|Ceĕ6DIL2&F<4Q_wӪF%<+> ? h!C8y#ØZؒ7T47mQŨ[M6D}"$q]J֊m㣟֙z3{Ma"F@u2-()-j5:%5bfzum?J!XX=ñ!uWAViMk!(|ONzBWF.a2F̩[iKg䅿vE.|̳l1M*yj7Q+.XV{*cY./y_fmh譃]nɁ?³/ q'!?eZ*x"ԽM+RLA^Jf?|0Ҏ)Ө,# Pp {(& [΢[e8>(񌴸<<k=M7j8Po>B9T0dX}lH* 2w:<ᶐrelk{ rHo__x 5LVoV9n)?VH_2\fMx|2[݃| scwc?B z`9\aXm\JV7,ha9-1 rC\a.g0+j (։B-SDg 00wr0*]j3ʵ<ı-5?*y^i\}jͲa-!q v Mk8&FUA5uJ&VӁ2I-3]hzM=r8y{4Hйiu7l8#8<0-~o\?uT4n@A. >n/Y_ݜygPKb xٗ+^fM,[FTKye8+cwGp* C }N+nT,!֓_} v'>l58_1&.~8!:RNw\]y+K:zlVؖ,m~^{ ^qw]':2>P uck"i}]e7mM;w=[UVmkN}muF? {ܮ4GR&ϵ[^&js AMu^z RaF]!uM#E//ur8YBȡ|=y&ٖku[ i}ZN.IӹЊ[U\9}'5[!"0M!$c3i@ȞxcLԅEX^N֎bP,+0_Gxeh=-|C? w[#xP+iŲ"J^*TfJUHee?cmLqN\ݯ!{_&W1*c ENK>}K y7C^rfu{}=B9 }3VY 7r\q^ 7o|o,2~#[bFloe;a\;B#0n[,gL?k>'T`] x?*8zS׸BS@;C[-zH"zinw5I]ٚ2m#1lo>+d' .#;GdYEy*@H/8[![JEeL*]>o\Z|)lCNal1;󴠶O0!Gm-I{oit3 5=SAIe}r ӺcJk#`ZGJed{IcW KŒΧGo|:.zXVV oSd{uMxXMEXmWbn[ki#:Znj8 3ȦVy?g~WJ$<s۞ӹ?cKC<;xxa?1[_^ Oaj { u[ /flm1rv2dcK %_rCu.,[tZ enD`k= ~Xv*h ͌F:s+qq.re}m)5u +/X0/쟀B$E_dЬPXYFQ|8y#pk+_'@"r8!T5Udh5|u2}xgq]clo^[̹V{z^7. uBȥ~O%%B4sI!AںouB=44ll[eiM?U “7#qr579YZ-esOZiKca #Ǒ9VG3c~6%u.Li?_h#["Hn9q G~LuRyʴ]j27ZbmU4Ǚ. /\Ɯ.3}7[kDsZi#,Ǵ/]+eXY^Ҽ !c*#,ZBȥBzA߃ժGjV=]F-ubԝ_'uҜWo v[ȆvcY=n9}EeE \_͵laҢslןT bcRkҶgw*o~ieBo;`.<||e:ȇMf< Ik@~YPelk#5I(Ǚ=3Qc|vý9v׾흉~(z9w Kem\}ϡ9mX6˴_!~3!\R$ oJ$}Sk T}C1ftc/c1sOgWt:Mq]l7#{qt=>+ ieyU!sV+SuVyY'neX]Weedբ鍶!z` BS߉Xn+$43 _8!RowU֭dY7=y>L *ᳮ@_dmoms}ػIoMksũgf%[%c뙠 i?n˜V1(_&]~`` u[!! -о'qiophmAi#`[y"SVH&E.66/wػ荼E|"\'ֹ,?uCR?'9uZf7V;;Iu6^D.B.YN\?ziu#߆EvX]ye)qcz)\=}X1%~ZZ#&rGufxw@.1 /7y5\e3x:GpysIr ['6"BC Z{εU74M:h-@C1wE5k.k:dH&^_D}7ĭ' z~G_]mNO|ehGch3yHHsr^zt1@c˿v+zF[ZH 1UK<W.W #\.T3J܍bȚkMVKfK{l9dڨ\oכzG8[|^Uml)ܘ^؞]'4{@bk m{`sd/7y u[!Aݼ⋸~΢lUY.OclVRڢp ]W?AlwH]g}y=v+֙mh,-o1>s{kX|+q?B\zT2(f^g$I!NZ۰s[ur6$cϭ[~+Y!vs=F#/ \wUf[J\s3»sL9]\/f\޾׿'a?׿8l r[ h>BOM?uivU&~ld|l]ǵ¬SǗqta[(^6\wF^i7w{N(n<gIXZ _[{^?4=^2j`Hu;s,lYW=y&f,n_];V]nw|8rzY57A!-'?K}+Zluqa3kfXFoi{Ƹ8P:?ܿhzzgGh\F#m-=?/gіodl˵bRo/׀+u~<PACo4w9y#Bg%#û'ͽZoeE`+J+>kizr{bJ^exq': WEޱ+%p)aa|pXc{Yd[x߻"Qǒ,~ ˞^wuֶ 68ZmQaK͚-J5[8=YB̼"hnd̻ptÿW͚L?מ[\s@KH^6u܆}GvYrxz ;y7O2Eh+lf`7k6.㱈%,y@oz~o 5bBq&=pI]$̼S&[2L؂Xvs>@sǼ`Ӣn.朱'#w*ފyVp:ęsB 7cfN[A/:2ӂtj ÆZJ8*-Zoe"诽p#>%{; CԝRk4I,vZ6ZnrZå_/3r`dQ&,rn9ǚ{2VOK0#4ACozG[ {Ch!独c.~|ܶhKhQuo*μ}Yx v]Cg n_tݮ0?)ZԼ2Y{эmiq눵]y)t\8B9a:j s ^!C;Nbž RyO /*s+y=ez/$Ӯ3k_?F2|,.6撨I❷qh+9&9ߺW+{L<=s|%z렡 #ĉk:N ^~g2ڠ4^9-9Uj-Qx^\@Xٓ>5Oo팽k;#O*P=Dd.?ᴍS:]e9m-aba 3F`qv+6s7F[BY&z rue*[lfTizjl䄣 Tj-Isp8O%cLlO .a.o ^/2Zsk6 yKKV$g3[FGM׿[̾wf^w衡z ;b$S#?2tjv8Bȋl6N+1RI{oe;ni41=A(Tg^@Hߗ:cN,&祥|ɬ;]'M]h㱗ymj"\Ev\kTǞ{Б;+3lue)-&ss~ܲd$qθ ߈ n[1fjQjgePc٬+յob>G5㵚]X[y4Zq_\*Om !d'zN鄠/PbG[- RGO[YD #v&Vgl'siށsL&]2Ni؎uW;isjsYwaΨz.{xo.}Un[^ױC:=|ֿYq_ʢ׿(AMjc +5 ֣Wߵ9ǎ?O3B.{ފy3d26)䩭4ZU޽GS#lo`=|og;Qi\K-қe1[ƶmucZߥ.Ǯ{5.a~˫˶ͭۜ?X-vkm|t y<~h@Co4wM l#]ɞ̽a9LsE2߀J1:+cԂʲ/ l'4C|f\ּM <+ ]Oւ^+`iMšu 9Qtƹz>AN?HNȔeg`un݊]fYܘAx,恖({BM,t.qVC3bsU$`Ysʊy9/Y܆Ow~[ayGhBnOw ^vGѩѨۺ`R_btֈռ/BDU;[txL?ȴlpʮ;8}.1ʲisQ]N^'NYCnRԲ]fG.mNQP`HR*mDIH#3--вb`qn?Cl,YALYb6\e~Y}a+ȮC!S,)uFFB.!TfΘ >3>0m {"^K6cs cjqzE;ޛyzBvӟki忦ϛqx]>FvQLRn񆆶SԓdyP=D!ESe}< |T'_$c*42iKz}K"j,+DAYj#UaJX.Y J[M Q,ZdI̲HY\a{94MtII&o%4,QTfߡ;’3@ޑϡ oi:U:\VXs+Ζ97c.SJ$c'&U 85fH~'EUFoYKX/ ^^TV$b-}O(fDC EUI1XRT8Ծ l9.ZW{<r7§>/qDi(L/s\ό +? -喦Y ㋩EDn"I|Y<<$̼dB!{J2'x?v؛8(ǽLY[o2?a/ OpaA$lj<P2.}א^(ep-_Y$8f8?%.~7> rcD[U纒E̲xi9#++h[ MkP*`* "όc o,&^Ni % 'a([BRLiD-=PдBMr{e[pަ|X*]@P߳Dh@%.uSQ_{dlG3B_m?m_qNB{XC%Ow{Xy3\x}^y.H4)_K 1 e_Ɓ1J`n[HlZfi̝Szi*_G.+hˏkQ*b-]*0 $ du aV{qeaDs&'qA`z!HQt񌞶W]yӌy6- =ryRz!S&MyS.W^RHsL B4hpbi+l a-,b^wc]FT嗀X>+2p,^fp< +j8]Vb}P-zhcQĩuB `|Ks-K +s9>vkSoϔeڞȲʥ}qyr$S/ SXXY?lXg`mz)%ie;򯜾?5&XYqR)-\ cï.fbzzZ:mSo Uy4w<< h#8;qC%4ˮ䪫D9~ ozjQ^ssUׯN]-(CƓZdXD3v%[UaZՙATV{oqSu@ %pS2uB1Bc}T۳[?MXQX~?ǶWJ>Lqķ C6/--_;؆P~kO( P>~O˖#[TxV0N{!">O8ukw/uyoJ@#zLvo[_o:uc|*to[]#75e5.U簲\\,&ۏm"4.7&1MDNkS-e|(,Ћؖe%Un/VΥz_<ƔIne=QW vJ}4fabzo˅y?Gynn+6߬<2Ek*+|ElS buMXC4!r}QZ\7`NL4Zm^:/K]M8q߬B?.ʴI9/ "ظL7*̼۪,[,JeUW&㙏ٖV6(hiZ}B 34 Ç@!sRXsp_\_[kslwr_buo3i$F:N1NzvgJ"V9'h1V.Jg[^kpK/>YK[[y1<:Y"Ci֪zb2%J f't+h ٿvFS2ԆV g5;2cVDE 0kاrLb3sVmcqt;lsW 8bߔ;Pf?2Zds??e?r|+يxyʖ ܨ*34!䨐Z}|~=ۤus<{أ?rr}_ʹ6 aZvkvطm}K5ٔa~T(i2̳Fq?gAn5?OB =B4g*O^* ]ȗT. ـ2Fp29VmDwCn,(17TN~YJP[uEn].e,9ЮLA Tc%c%D}9oʃ'إo{kvU5Pũ2Erc=(C9 ZƲ~?&{^B904۷_Mj{%V]q ?Bo6^f02Oٮg*+ f,qѠn)l@-sOu !4{n0>=N(+ Dʙϊ^(uu"`"p leIF^A )Zjf9&)E`D#vQYrekf,+ժ4R)yiqia)+9xϻh˦Gb[ظJF=":' 6.t0<B!G4[1Ue?afĥGqa(ZW-.[ {fn#eh9d\ 3c(L<SjʹX\/Ud}3R"Gh i٬'tȼU"/fBCp-M!Ze[+ eG9mEv唟KEJyѼ.1 hUSn'3?-bT(SUOg /}&by|=,곥fķߔKO+W'Wg? B/X/Ÿy3<^tQ1+o)._dMn_ :_HuZfqr|?nwM6 y{/}V唺RvϔE1g}B|)ƴ_c9PU|{r7+:9F:nYWα_?OO~B..cW!z-܃j[r=(~kM_9elOΣu,ٚ5֌dnz=LӆuߟkfTiFK\>?\^렡 =3⋝@nʗ`5/ ._b2X*䈶W*, lU:V-"P)LKıRG FLFSV+dYs 6qHaܦ<F7ʩ.jC>Y_ls/_S^kbEr\YsA-u/%ךXϼ+(/8YKe uWzKir 7|'pUBVwYտEemBH aviZL%n{LyzKg8-wlŬ*/_Gִ3Q=ˌj gw^ކGRy4xCnT [b*ԳO>&K熗_#drŅ_c꩛񛗁J\CA++2u2k(+)Vhd[h'7;T\\ߔ"c6tz gp~gIo뵒xYT1VpUEl(^DMZra_'2~{RTϟ'zSBeDW?u p+p?ԡ{[C_~sQog`|,zOx@-;79|wŖBH͉y]oPC_ Ui_>ky/ql}Cpnscmls}I8ӭ|!K"54. -Yg go@~,eVVs( |qeÿRzV,]Zʿ^6ۨl=c X)06|̆0,1 ՠbÔݔS9oos$Z^eYyٚ ,,Ħo%B*R ŒN:M_܋?`_P\cZy';g%!V*s&21nK<'r\;<mF˿ b[҄]nz و8y8!.3P To5j!M6mR |Ӕ7is)v[Z#8n\OBՃx[}WdP8h'8do:)Vo&ш'3H'mއ|֢}||VhVBYOjo~?/{X2mʮ/9,b_δ.]7en ~[6d9m̝r-g9g_~Qyğ8Wd[ hq^5iǚ[麨Y"fAntcu mbvuBe^j 6τV)UwXEebіW91Z)\-Ȋa;za6ΫxlG!d'Ի>5~M4 '[i_nhnls:1k3Y0p<VO1M3z=%5#1r܎7F$Y u[1';Nsge{-)iedWY42nEo;U/K6)~+/%Ÿoy])1XےR r <[Z45L.x%AB(᯽ 8~e\ןni:ָF6K2CJ:m i`˜oŠ짌 ,SΉUYOIV e.n]n/>[ h葋oz3qZnoq"2u|VybAf;ey2z_n"uL73qfS lزFm0/d[g'uK!ōb9ܿdoYc5PL)kya8 ?_z #‰k>Ně3Vz2Z)v#QMowiũJ^pM2 +e]'+pE&踾ɚ VK7;&SFmB꥔QXb0'jy$? B!dO3~3NjU[cڥ5-$;Y։eR n`s0M,MR` 7mٿu>{)p d'[ h]Ŵ[j$jA3ܳɤF\AF.DZ2I$W*0X 6+3Ԟʪ$Pu'YU4[/[h޹>r\g!.'ĸ-rJ[h|w*BSֻ:nLZ۹ !b6O Co&n5p= eI,׍߰^  eg=Vy䢠z #Ήk^yV;XM:"+S)ڊqBƊZLiRW6^-hh"3وly}3bv"9n  d7LsNx&/~aMY2\=u BSc}k֕w_bkO[Vy0]y: 7ˆPNF{F^ҿ*gz5,Ymh=XGȮ@Co4GO"tpZ5٫h[#5,/R⥊6Xm<-dZiC+۴̵ tv\xǪ0ǻzrh׭>2s^$(gٕ1{l !<ិ_vRY9~7̵`ܤo*gLM7E7Ukw`{-`V#/W`;έg>{4ACozdOIcnwFюC-ZW)BQgƹ"l˱!>:aTj| Cu ɝwlDoD_uDo|7Ri3?97A! N\S߈svT#{jB4&q Eqz^)gnYGC\ghz󇭬*&,Ǽ~~8O.4ACozd_8yϼog&K-EBsd&n;CږjfNX/n[UYom? &Tg6GgQwWNJ˯o=( |2 w}W꭭F+{t// rx ]2fZj\Wmēò,QZKEYi^wI{ֆ̲Xj1onmm[kĂ/ { u[Wmxi膫[Bg!$jOew\:m*_u[=^[VX[gU.o}\+Kw9Ie+O? ^K!h[Uk%W{H[MKx;2lttҚrT EXkjgfϖ(֟~y|b{*{.@)T 9߯^tqg|Ch譃4Ⱦs?:^7Ml^OFKmŏlCT -/cg[YNYutv$Gޗu* URtT-s?O ܲ }I.> B'n׻ ?6\J)P*rK2Ϙ:Жmhݷp\qP%[]rUǨf7ɴD+8W>˷ג}:h-@Cm|o'_3̾iϚc HkN]bSqB+k[,۳H/mWؕIt1\|`saM ]ڰJ$xn-T*qU3M/1:6fkCVM%Ϥq[*6W7r`ESlqmS_ 'ִb-M#{1DZOƜZy6BP,ZtiBRofo}:֨ɇ[B.ug$c2z_mSϘfim\4/F\O/vacNjX VMֺ31r։q7Q1ĜmyDBYn~Su?*slo?Q;qr/A+&;lӏٯ6uw^vɬݚz|c֫~̺vGrm"d{g#Q[{=NM B!"Nt%wue]/{Znc%%~eb{8-U;r7TPk7Mu-[QGN'M 5Xi1mAKu-f6r3r[D}u,hL?_cL /xRK! N3xl=MHT4MhmM븬ۤqHje%ScޙUL$cU]JIe^'*vg_,W٥\[ h˖7"$eRyl}ҕw8'u\am6ʴuhVK ے-j96[][[#B>妷3 I#|'a'JàB"OkO ]w.]ZⵍB<4g9.젡z #S7! @"<)ĺC1 ⷺ6# 4̱P]x}˱sV80=׆#B.Mw탹^c[%`Kf}.D/zms1=.q{;ZoIYH_Z忄\[ hbc-o{9*"|.̔tEnӒPKq@f?^ܨu^6 nkVaW~l(ǧZq׀ςB!i̽dqN$V{_dcBͱ-tN¢qX=͘z\Ͼp.%1 [! $s/{zeX%/sLz:Wj[Ia8""uئ6dy$Py C+dBt^$b۷ދNB6<b;w4Jal1W\n9 6n'o-d⥿4Q[ hǮq0_=w^i+못*[yȚUX.'&p[#B]%b_Wn2lq"vl$b:-|sPcٸ AkmmF+:,l&rN+*cY?8C$mgO F^GYh譃4HR˽S^wcyxRĞ;Lbn,Hբ͋ư)3/"tԍ-![$/K{iKC4 +_U9v|k=4弖seSZ0_-z렡 =Bv47-R+ vAcFeAhu30}dF2R˻s/ĂcB!d?Iijz\CyMvAjEV^މO#~|]2ӈ bz #d]uO-:/\wb$7dYw-ZȬ_IיvGJ3ǖwB9$C{0|Wt;2]Sjʩ d%Ӄaw #dz #I&_6Rkdž贈*E[tULn֖[畮 / :.{.;,;B!\$'oؕXJkZٮ37 [Vٺ̻޴{! u[!dluh 0.熏jlY7vudcZ%1fya"B!H_?{7}i}]9- `گnZz-J\6{zj*ӟy~̷C u[!B!B@Co[ B!B!hB!B!rG!B!B!B!B!GzB!B!!hB!B!r@B!B!dozB!B!Y B!B!-lz d"B!B{Bo=4` =B!B!zh-@CB!B!dz &B!B{i ^z B!B!doH[bB!B!m7 ^|EB!B!f[}B!B! g$[m B!B! ]94V¦B!B!?4V1&B!B=R*s9461!B!B!v H4!B!Bœ< cg#B!Bx{9ACoCsLSB!B!d礮;o<!B!BvFz(K]4v@2,B!B!dsdžR nL!B!䥼  uMD !B!BKSB!B!d\p]mw zI:!B!B!&7w{2B!B!$$y&ݸ%hB!B!h4vlD%B!B =. K!B!y{ = ?<!B!B.! M'q2*lm;%B!BȥIA{9K { =_wԻ+@!B!r)4 lR+Rꫯ_N!B!MjԐ/tŒe+bB!B!Gy  ^ꊛ >G!B!J~W@Z]kzHH^jB!B!Ij~rxwHHF8B}r/_B!B! vIw{%ᅆ!$]0#B!B!$Á!B!B9B#B!B!ACB!B!# =B!B!B4!B!B9B#B!B!ACB!B!# =B!B!B4!B!B9B#B!B!ACB!B!# =B!B!B4!B!B9B#B!B!ACB!B!# =B!B!B4!B!B9B#B!B!ACB!B!# =B!B!B4!B!B9B#B!B!ACB!B!# =B!B!B4!B!B9B#B!B!ACB!B!# =B!B!B4!B!B9B#B!B!ACB!B!# =B!B!B4!B!B9B#B!B!ACB!B!# =B!B!B4!B!B9B#B!B!BxB!B!CO܊ۑ!B!B!GGV!B!B!GG:[ B!B!z"!B!B!OW1!B!B!pc_۷!B!B!3 zW_y/B!B!rxϦ?裏>#B!B!0?zM򴫮gCOB!B!rxx4K,x'}=}s B!B!B|cؿ__&=gn!B!B!@I/=s_y-QB!B!BǾػ-oѫ@!B!B9'}? sr-@!B!Bnr/[o=p#7wwB!B!'';3̼[nKt;vݽ:cB!B!Vy~?'/ ؀WnڏvkB!B!ѷȋ Ov_otޏtޏfdFDv%B!B!0wOv^Zz'Ks=bk< dh.(IENDB`vcrpy-6.0.1/docs/_static/vcr.svg000066400000000000000000000143541455450430400165650ustar00rootroot00000000000000 vcrpy-6.0.1/docs/advanced.rst000066400000000000000000000335521455450430400161240ustar00rootroot00000000000000Advanced Features ================= If you want, VCR.py can return information about the cassette it is using to record your requests and responses. This will let you record your requests and responses and make assertions on them, to make sure that your code under test is generating the expected requests and responses. This feature is not present in Ruby's VCR, but I think it is a nice addition. Here's an example: .. code:: python import vcr import urllib2 with vcr.use_cassette('fixtures/vcr_cassettes/synopsis.yaml') as cass: response = urllib2.urlopen('http://www.zombo.com/').read() # cass should have 1 request inside it assert len(cass) == 1 # the request uri should have been http://www.zombo.com/ assert cass.requests[0].uri == 'http://www.zombo.com/' The ``Cassette`` object exposes the following properties which I consider part of the API. The fields are as follows: - ``requests``: A list of vcr.Request objects corresponding to the http requests that were made during the recording of the cassette. The requests appear in the order that they were originally processed. - ``responses``: A list of the responses made. - ``play_count``: The number of times this cassette has played back a response. - ``all_played``: A boolean indicating whether all the responses have been played back. - ``responses_of(request)``: Access the responses that match a given request - ``allow_playback_repeats``: A boolean indicating whether responses can be played back more than once. The ``Request`` object has the following properties: - ``uri``: The full uri of the request. Example: "https://google.com/?q=vcrpy" - ``scheme``: The scheme used to make the request (http or https) - ``host``: The host of the request, for example "www.google.com" - ``port``: The port the request was made on - ``path``: The path of the request. For example "/" or "/home.html" - ``query``: The parsed query string of the request. Sorted list of name, value pairs. - ``method`` : The method used to make the request, for example "GET" or "POST" - ``body``: The body of the request, usually empty except for POST / PUT / etc Backwards compatible properties: - ``url``: The ``uri`` alias - ``protocol``: The ``scheme`` alias Register your own serializer ---------------------------- Don't like JSON or YAML? That's OK, VCR.py can serialize to any format you would like. Create your own module or class instance with 2 methods: - ``def deserialize(cassette_string)`` - ``def serialize(cassette_dict)`` Finally, register your class with VCR to use your new serializer. .. code:: python import vcr class BogoSerializer: """ Must implement serialize() and deserialize() methods """ pass my_vcr = vcr.VCR() my_vcr.register_serializer('bogo', BogoSerializer()) with my_vcr.use_cassette('test.bogo', serializer='bogo'): # your http here # After you register, you can set the default serializer to your new serializer my_vcr.serializer = 'bogo' with my_vcr.use_cassette('test.bogo'): # your http here Register your own request matcher --------------------------------- Create your own method with the following signature .. code:: python def my_matcher(r1, r2): Your method receives the two requests and can either: - Use an ``assert`` statement: return None if they match and raise ``AssertionError`` if not. - Return a boolean: ``True`` if they match, ``False`` if not. Note: in order to have good feedback when a matcher fails, we recommend using an ``assert`` statement with a clear error message. Finally, register your method with VCR to use your new request matcher. .. code:: python import vcr def jurassic_matcher(r1, r2): assert r1.uri == r2.uri and 'JURASSIC PARK' in r1.body, \ 'required string (JURASSIC PARK) not found in request body' my_vcr = vcr.VCR() my_vcr.register_matcher('jurassic', jurassic_matcher) with my_vcr.use_cassette('test.yml', match_on=['jurassic']): # your http here # After you register, you can set the default match_on to use your new matcher my_vcr.match_on = ['jurassic'] with my_vcr.use_cassette('test.yml'): # your http here Register your own cassette persister ------------------------------------ Create your own persistence class, see the example below: Your custom persister must implement both ``load_cassette`` and ``save_cassette`` methods. The ``load_cassette`` method must return a deserialized cassette or raise either ``CassetteNotFoundError`` if no cassette is found, or ``CassetteDecodeError`` if the cassette cannot be successfully deserialized. Once the persister class is defined, register with VCR like so... .. code:: python import vcr my_vcr = vcr.VCR() class CustomerPersister: # implement Persister methods... my_vcr.register_persister(CustomPersister) Filter sensitive data from the request -------------------------------------- If you are checking your cassettes into source control, and are using some form of authentication in your tests, you can filter out that information so it won't appear in your cassette files. There are a few ways to do this: Filter information from HTTP Headers ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Use the ``filter_headers`` configuration option with a list of headers to filter. .. code:: python with my_vcr.use_cassette('test.yml', filter_headers=['authorization']): # sensitive HTTP request goes here Filter information from HTTP querystring ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Use the ``filter_query_parameters`` configuration option with a list of query parameters to filter. .. code:: python with my_vcr.use_cassette('test.yml', filter_query_parameters=['api_key']): requests.get('http://api.com/getdata?api_key=secretstring') Filter information from HTTP post data ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Use the ``filter_post_data_parameters`` configuration option with a list of post data parameters to filter. .. code:: python with my_vcr.use_cassette('test.yml', filter_post_data_parameters=['api_key']): requests.post('http://api.com/postdata', data={'api_key': 'secretstring'}) Advanced use of filter_headers, filter_query_parameters and filter_post_data_parameters ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In all of the above cases, it's also possible to pass a list of ``(key, value)`` tuples where the value can be any of the following: * A new value to replace the original value. * ``None`` to remove the key/value pair. (Same as passing a simple key string.) * A callable that returns a new value or ``None``. So these two calls are the same: .. code:: python # original (still works) vcr = VCR(filter_headers=['authorization']) # new vcr = VCR(filter_headers=[('authorization', None)]) Here are two examples of the new functionality: .. code:: python # replace with a static value (most common) vcr = VCR(filter_headers=[('authorization', 'XXXXXX')]) # replace with a callable, for example when testing # lots of different kinds of authorization. def replace_auth(key, value, request): auth_type = value.split(' ', 1)[0] return '{} {}'.format(auth_type, 'XXXXXX') Custom Request filtering ~~~~~~~~~~~~~~~~~~~~~~~~ If none of these covers your request filtering needs, you can register a callback with the ``before_record_request`` configuration option to manipulate the HTTP request before adding it to the cassette, or return ``None`` to ignore it entirely. Here is an example that will never record requests to the ``'/login'`` path: .. code:: python def before_record_cb(request): if request.path == '/login': return None return request my_vcr = vcr.VCR( before_record_request=before_record_cb, ) with my_vcr.use_cassette('test.yml'): # your http code here You can also mutate the request using this callback. For example, you could remove all query parameters from any requests to the ``'/login'`` path. .. code:: python def scrub_login_request(request): if request.path == '/login': request.uri, _ = urllib.splitquery(request.uri) return request my_vcr = vcr.VCR( before_record_request=scrub_login_request, ) with my_vcr.use_cassette('test.yml'): # your http code here Custom Response Filtering ~~~~~~~~~~~~~~~~~~~~~~~~~ You can also do response filtering with the ``before_record_response`` configuration option. Its usage is similar to the above ``before_record_request`` - you can mutate the response, or return ``None`` to avoid recording the request and response altogether. For example to hide sensitive data from the response body: .. code:: python def scrub_string(string, replacement=''): def before_record_response(response): response['body']['string'] = response['body']['string'].replace(string, replacement) return response return before_record_response my_vcr = vcr.VCR( before_record_response=scrub_string(settings.USERNAME, 'username'), ) with my_vcr.use_cassette('test.yml'): # your http code here Decode compressed response --------------------------- When the ``decode_compressed_response`` keyword argument of a ``VCR`` object is set to True, VCR will decompress "gzip" and "deflate" response bodies before recording. This ensures that these interactions become readable and editable after being serialized. .. note:: Decompression is done before any other specified `Custom Response Filtering`_. This option should be avoided if the actual decompression of response bodies is part of the functionality of the library or app being tested. Ignore requests --------------- If you would like to completely ignore certain requests, you can do it in a few ways: - Set the ``ignore_localhost`` option equal to True. This will not record any requests sent to (or responses from) localhost, 127.0.0.1, or 0.0.0.0. - Set the ``ignore_hosts`` configuration option to a list of hosts to ignore - Add a ``before_record_request`` or ``before_record_response`` callback that returns ``None`` for requests you want to ignore (see above). Requests that are ignored by VCR will not be saved in a cassette, nor played back from a cassette. VCR will completely ignore those requests as if it didn't notice them at all, and they will continue to hit the server as if VCR were not there. Custom Patches -------------- If you use a custom ``HTTPConnection`` class, or otherwise make http requests in a way that requires additional patching, you can use the ``custom_patches`` keyword argument of the ``VCR`` and ``Cassette`` objects to patch those objects whenever a cassette's context is entered. To patch a custom version of ``HTTPConnection`` you can do something like this: :: import where_the_custom_https_connection_lives from vcr.stubs import VCRHTTPSConnection my_vcr = config.VCR(custom_patches=((where_the_custom_https_connection_lives, 'CustomHTTPSConnection', VCRHTTPSConnection),)) @my_vcr.use_cassette(...) Automatic Cassette Naming ------------------------- VCR.py now allows the omission of the path argument to the use\_cassette function. Both of the following are now legal/should work .. code:: python @my_vcr.use_cassette def my_test_function(): ... .. code:: python @my_vcr.use_cassette() def my_test_function(): ... In both cases, VCR.py will use a path that is generated from the provided test function's name. If no ``cassette_library_dir`` has been set, the cassette will be in a file with the name of the test function in directory of the file in which the test function is declared. If a ``cassette_library_dir`` has been set, the cassette will appear in that directory in a file with the name of the decorated function. It is possible to control the path produced by the automatic naming machinery by customizing the ``path_transformer`` and ``func_path_generator`` vcr variables. To add an extension to all cassette names, use ``VCR.ensure_suffix`` as follows: .. code:: python my_vcr = VCR(path_transformer=VCR.ensure_suffix('.yaml')) @my_vcr.use_cassette def my_test_function(): Rewind Cassette --------------- VCR.py allows to rewind a cassette in order to replay it inside the same function/test. .. code:: python with vcr.use_cassette('fixtures/vcr_cassettes/synopsis.yaml') as cass: response = urllib2.urlopen('http://www.zombo.com/').read() assert cass.all_played cass.rewind() assert not cass.all_played Playback Repeats ---------------- By default, each response in a cassette can only be matched and played back once while the cassette is in use, unless the cassette is rewound. If you want to allow playback repeats without rewinding the cassette, use the Cassette ``allow_playback_repeats`` option. .. code:: python with vcr.use_cassette('fixtures/vcr_cassettes/synopsis.yaml', allow_playback_repeats=True) as cass: for x in range(10): response = urllib2.urlopen('http://www.zombo.com/').read() assert cass.all_played Discards Cassette on Errors --------------------------- By default VCR will save the cassette file even when there is any error inside the enclosing context/test. If you want to save the cassette only when the test succeeds, set the Cassette ``record_on_exception`` option to ``False``. .. code:: python try: my_vcr = VCR(record_on_exception=False) with my_vcr.use_cassette('fixtures/vcr_cassettes/synopsis.yaml') as cass: response = urllib2.urlopen('http://www.zombo.com/').read() raise RuntimeError("Oops, something happened") except RuntimeError: pass # Since there was an exception, the cassette file hasn't been created. assert not os.path.exists('fixtures/vcr_cassettes/synopsis.yaml') vcrpy-6.0.1/docs/api.rst000066400000000000000000000014421455450430400151210ustar00rootroot00000000000000API === :mod:`~vcr.config` ------------------ .. automodule:: vcr.config :members: :special-members: __init__ :mod:`~vcr.cassette` -------------------- .. automodule:: vcr.cassette :members: :special-members: __init__ :mod:`~vcr.matchers` -------------------- .. automodule:: vcr.matchers :members: :special-members: __init__ :mod:`~vcr.filters` ------------------- .. automodule:: vcr.filters :members: :special-members: __init__ :mod:`~vcr.request` ------------------- .. automodule:: vcr.request :members: :special-members: __init__ :mod:`~vcr.serialize` --------------------- .. automodule:: vcr.serialize :members: :special-members: __init__ :mod:`~vcr.patch` ----------------- .. automodule:: vcr.patch :members: :special-members: __init__ vcrpy-6.0.1/docs/changelog.rst000066400000000000000000000453411455450430400163050ustar00rootroot00000000000000Changelog --------- For a full list of triaged issues, bugs and PRs and what release they are targeted for please see the following link. `ROADMAP MILESTONES `_ All help in providing PRs to close out bug issues is appreciated. Even if that is providing a repo that fully replicates issues. We have very generous contributors that have added these to bug issues which meant another contributor picked up the bug and closed it out. - 6.0.1 - Bugfix with to Tornado cassette generator (thanks @graingert) - 6.0.0 - BREAKING: Fix issue with httpx support (thanks @parkerhancock) in #784. NOTE: You may have to recreate some of your cassettes produced in previous releases due to the binary format being saved incorrectly in previous releases - BREAKING: Drop support for `boto` (vcrpy still supports boto3, but is dropping the deprecated `boto` support in this release. (thanks @jairhenrique) - Fix compatibility issue with Python 3.12 (thanks @hartwork) - Drop simplejson (fixes some compatibility issues) (thanks @jairhenrique) - Run CI on Python 3.12 and PyPy 3.9-3.10 (thanks @mgorny) - Various linting and docs improvements (thanks @jairhenrique) - Tornado fixes (thanks @graingert) - 5.1.0 - Use ruff for linting (instead of current flake8/isort/pyflakes) - thanks @jairhenrique - Enable rule B (flake8-bugbear) on ruff - thanks @jairhenrique - Configure read the docs V2 - thanks @jairhenrique - Fix typo in docs - thanks @quasimik - Make json.loads of Python >=3.6 decode bytes by itself - thanks @hartwork - Fix body matcher for chunked requests (fixes #734) - thanks @hartwork - Fix query param filter for aiohttp (fixes #517) - thanks @hartwork and @salomvary - Remove unnecessary dependency on six. - thanks @charettes - build(deps): update sphinx requirement from <7 to <8 - thanks @jairhenrique - Add action to validate docs - thanks @jairhenrique - Add editorconfig file - thanks @jairhenrique - Drop iscoroutinefunction fallback function for unsupported python thanks @jairhenrique - 5.0.0 - BREAKING CHANGE: Drop support for Python 3.7. 3.7 is EOL as of 6/27/23 Thanks @jairhenrique - BREAKING CHANGE: Custom Cassette persisters no longer catch ValueError. If you have implemented a custom persister (has anyone implemented a custom persister? Let us know!) then you will need to throw a CassetteNotFoundError when unable to find a cassette. See #681 for discussion and reason for this change. Thanks @amosjyng for the PR and the review from @hartwork - 4.4.0 - HUGE thanks to @hartwork for all the work done on this release! - Bring vcr/unittest in to vcrpy as a full feature of vcr instead of a separate library. Big thanks to @hartwork for doing this and to @agriffis for originally creating the library - Make decompression robust towards already decompressed input (thanks @hartwork) - Bugfix: Add read1 method (fixes compatibility with biopython), thanks @mghantous - Bugfix: Prevent filters from corrupting request (thanks @abramclark) - Bugfix: Add support for `response.raw.stream()` to fix urllib v2 compat - Bugfix: Replace `assert` with `raise AssertionError`: fixes support for `PYTHONOPTIMIZE=1` - Add pytest.mark.online to run test suite offline, thanks @jspricke - use python3 and pip3 binaries to ease debian packaging (thanks @hartwork) - Add codespell (thanks @mghantous) - 4.3.1 - Support urllib3 v1 and v2. NOTE: there is an issue running urllib3 v2 on Python older than 3.10, so this is currently blocked in the requirements. Hopefully we can resolve this situation in the future. Thanks to @shifqu, hartwork, jairhenrique, pquentin, and vEpiphyte for your work on this. - 4.3.0 - Add support for Python 3.11 (Thanks @evgeni) - Drop support for botocore <1.11.0 and requests <2.16.2 (thanks @hartwork) - Bugfix: decode_compressed_response raises exception on empty responses. Thanks @CharString - Don't save requests from decorated tests if decorated test fails (thanks @dan-passaro) - Fix not calling all the exit stack when record_on_exception is False (thanks @Terseus) - Various CI, documentation, testing, and formatting improvements (Thanks @jairhenrique, @dan-passaro, @hartwork, and Terseus) - 4.2.1 - Fix a bug where the first request in a redirect chain was not being recorded with aiohttp - Various typos and small fixes, thanks @jairhenrique, @timgates42 - 4.2.0 - Drop support for python < 3.7, thanks @jairhenrique, @IvanMalison, @AthulMuralidhar - Various aiohtt bigfixes (thanks @pauloromeira and boechat107) - Bugfix: filter_post_data_parameters not working with aiohttp. Thank you @vprakashplanview, @scop, @jairhenrique, and @cinemascop89 - Bugfix: Some random misspellings (thanks @scop) - Migrate the CI suite to Github Actions from Travis (thanks @jairhenrique and @cclauss) - Various documentation and code misspelling fixes (thanks @scop and @Justintime50) - Bugfix: httpx support (select between allow_redirects/follow_redirects) (thanks @immerrr) - Bugfix: httpx support (select between allow_redirects/follow_redirects) (thanks @immerrr) - 4.1.1 - Fix HTTPX support for versions greater than 0.15 (thanks @jairhenrique) - Include a trailing newline on json cassettes (thanks @AaronRobson) - 4.1.0 - Add support for httpx!! (thanks @herdigiorgi) - Add the new `allow_playback_repeats` option (thanks @tysonholub) - Several aiohttp improvements (cookie support, multiple headers with same key) (Thanks @pauloromeira) - Use enums for record modes (thanks @aaronbannin) - Bugfix: Do not redirect on 304 in aiohttp (Thanks @royjs) - Bugfix: Fix test suite by switching to mockbin (thanks @jairhenrique) - 4.0.2 - Fix mock imports as reported in #504 by @llybin. Thank you. - 4.0.1 - Fix logo alignment for PyPI - 4.0.0 - Remove Python2 support (@hugovk) - Add Python 3.8 TravisCI support (@neozenith) - Updated the logo to a modern material design (@sean0x42) - 3.0.0 - This release is a breaking change as it changes how aiohttp follows redirects and your cassettes may need to be re-recorded with this update. - Fix multiple requests being replayed per single request in aiohttp stub #495 (@nickdirienzo) - Add support for `request_info` on mocked responses in aiohttp stub #495 (@nickdirienzo) - doc: fixed variable name (a -> cass) in an example for rewind #492 (@yarikoptic) - 2.1.1 - Format code with black (@neozenith) - Use latest pypy3 in Travis (@hugovk) - Improve documentation about custom matchers (@gward) - Fix exception when body is empty (@keithprickett) - Add `pytest-recording` to the documentation as an alternative Pytest plugin (@Stranger6667) - Fix yarl and python3.5 version issue (@neozenith) - Fix header matcher for boto3 - fixes #474 (@simahawk) - 2.1.0 - Add a `rewind` method to reset a cassette (thanks @khamidou) - New error message with more details on why the cassette failed to play a request (thanks @arthurHamon2, @neozenith) - Handle connect tunnel URI (thanks @jeking3) - Add code coverage to the project (thanks @neozenith) - Drop support to python 3.4 - Add deprecation warning on python 2.7, next major release will drop python 2.7 support - Fix build problems on requests tests (thanks to @dunossauro) - Fix matching on 'body' failing when Unicode symbols are present in them (thanks @valgur) - Fix bugs on aiohttp integration (thanks @graingert, @steinnes, @stj, @lamenezes, @lmazuel) - Fix Biopython incompatibility (thanks @rishab121) - Fix Boto3 integration (thanks @1oglop1, @arthurHamon2) - 2.0.1 - Fix bug when using vcrpy with python 3.4 - 2.0.0 - Support python 3.7 (fix httplib2 and urllib2, thanks @felixonmars) - [#356] Fixes `before_record_response` so the original response isn't changed (thanks @kgraves) - Fix requests stub when using proxy (thanks @samuelfekete @daneoshiga) - (only for aiohttp stub) Drop support to python 3.4 asyncio.coroutine (aiohttp doesn't support python it anymore) - Fix aiohttp stub to work with aiohttp client (thanks @stj) - Fix aiohttp stub to accept content type passed - Improve docs (thanks @adamchainz) - 1.13.0 - Fix support to latest aiohttp version (3.3.2). Fix content-type bug in aiohttp stub. Save URL with query params properly when using aiohttp. - 1.12.0 - Fix support to latest aiohttp version (3.2.1), Adapted setup to PEP508, Support binary responses on aiohttp, Dropped support for EOL python versions (2.6 and 3.3) - 1.11.1 - Fix compatibility with newest requests and urllib3 releases - 1.11.0 - Allow injection of persistence methods + bugfixes (thanks @j-funk and @IvanMalison), - Support python 3.6 + CI tests (thanks @derekbekoe and @graingert), - Support pytest-asyncio coroutines (thanks @graingert) - 1.10.5 - Added a fix to httplib2 (thanks @carlosds730), Fix an issue with - aiohttp (thanks @madninja), Add missing requirement yarl (thanks @lamenezes), - Remove duplicate mock triple (thanks @FooBarQuaxx) - 1.10.4 - Fix an issue with asyncio aiohttp (thanks @madninja) - 1.10.3 - Fix some issues with asyncio and params (thanks @anovikov1984 and @lamenezes) - Fix some issues with cassette serialize / deserialize and empty response bodies (thanks @gRoussac and @dz0ny) - 1.10.2 - Fix 1.10.1 release - add aiohttp support back in - 1.10.1 - [bad release] Fix build for Fedora package + python2 (thanks @puiterwijk and @lamenezes) - 1.10.0 - Add support for aiohttp (thanks @lamenezes) - 1.9.0 - Add support for boto3 (thanks @desdm, @foorbarna). - Fix deepcopy issue for response headers when `decode_compressed_response` is enabled (thanks @nickdirienzo) - 1.8.0 - Fix for Serialization errors with JSON adapter (thanks @aliaksandrb). - Avoid concatenating bytes with strings (thanks @jaysonsantos). - Exclude __pycache__ dirs & compiled files in sdist (thanks @koobs). - Fix Tornado support behavior for Tornado 3 (thanks @abhinav). - decode_compressed_response option and filter (thanks @jayvdb). - 1.7.4 [#217] - Make use_cassette decorated functions actually return a value (thanks @bcen). - [#199] Fix path transformation defaults. - Better headers dictionary management. - 1.7.3 [#188] - ``additional_matchers`` kwarg on ``use_cassette``. - [#191] Actually support passing multiple before_record_request functions (thanks @agriffis). - 1.7.2 - [#186] Get effective_url in tornado (thanks @mvschaik) - [#187] Set request_time on Response object in tornado (thanks @abhinav). - 1.7.1 - [#183] Patch ``fetch_impl`` instead of the entire HTTPClient class for Tornado (thanks @abhinav). - 1.7.0 - [#177] Properly support coroutine/generator decoration. - [#178] Support distribute (thanks @graingert). [#163] Make compatibility between python2 and python3 recorded cassettes more robust (thanks @gward). - 1.6.1 - [#169] Support conditional requirements in old versions of pip - Fix RST parse errors generated by pandoc - [Tornado] Fix unsupported features exception not being raised - [#166] content-aware body matcher. - 1.6.0 - [#120] Tornado support (thanks @abhinav) - [#147] packaging fixes (thanks @graingert) - [#158] allow filtering post params in requests (thanks @MrJohz) - [#140] add xmlrpclib support (thanks @Diaoul). - 1.5.2 - Fix crash when cassette path contains cassette library directory (thanks @gazpachoking). - 1.5.0 - Automatic cassette naming and 'application/json' post data filtering (thanks @marco-santamaria). - 1.4.2 - Fix a bug caused by requests 2.7 and chunked transfer encoding - 1.4.1 - Include README, tests, LICENSE in package. Thanks @ralphbean. - 1.4.0 - Filter post data parameters (thanks @eadmundo) - Support for posting files through requests, inject\_cassette kwarg to access cassette from ``use_cassette`` decorated function, ``with_current_defaults`` actually works (thanks @samstav). - 1.3.0 - Fix/add support for urllib3 (thanks @aisch) - Fix default port for https (thanks @abhinav). - 1.2.0 - Add custom\_patches argument to VCR/Cassette objects to allow users to stub custom classes when cassettes become active. - 1.1.4 - Add force reset around calls to actual connection from stubs, to ensure compatibility with the version of httplib/urlib2 in python 2.7.9. - 1.1.3 - Fix python3 headers field (thanks @rtaboada) - fix boto test (thanks @telaviv) - fix new\_episodes record mode (thanks @jashugan), - fix Windows connectionpool stub bug (thanks @gazpachoking) - add support for requests 2.5 - 1.1.2 - Add urllib==1.7.1 support. - Make json serialize error handling correct - Improve logging of match failures. - 1.1.1 - Use function signature preserving ``wrapt.decorator`` to write the decorator version of use\_cassette in order to ensure compatibility with py.test fixtures and python 2. - Move all request filtering into the ``before_record_callable``. - 1.1.0 - Add ``before_record_response``. Fix several bugs related to the context management of cassettes. - 1.0.3 - Fix an issue with requests 2.4 and make sure case sensitivity is consistent across python versions - 1.0.2 - Fix an issue with requests 2.3 - 1.0.1 - Fix a bug with the new ignore requests feature and the once record mode - 1.0.0 - *BACKWARDS INCOMPATIBLE*: Please see the 'upgrade' section in the README. Take a look at the matcher section as well, you might want to update your ``match_on`` settings. - Add support for filtering sensitive data from requests, matching query strings after the order changes and improving the built-in matchers, (thanks to @mshytikov) - Support for ignoring requests to certain hosts, bump supported Python3 version to 3.4, fix some bugs with Boto support (thanks @marusich) - Fix error with URL field capitalization in README (thanks @simon-weber) - Added some log messages to help with debugging - Added ``all_played`` property on cassette (thanks @mshytikov) - 0.7.0 - VCR.py now supports Python 3! (thanks @asundg) - Also I refactored the stub connections quite a bit to add support for the putrequest and putheader calls. - This version also adds support for httplib2 (thanks @nilp0inter). - I have added a couple tests for boto since it is an http client in its own right. - Finally, this version includes a fix for a bug where requests wasn't being patched properly (thanks @msabramo). - 0.6.0 - Store response headers as a list since a HTTP response can have the same header twice (happens with set-cookie sometimes). - This has the added benefit of preserving the order of headers. - Thanks @smallcode for the bug report leading to this change. - I have made an effort to ensure backwards compatibility with the old cassettes' header storage mechanism, but if you want to upgrade to the new header storage, you should delete your cassettes and re-record them. - Also this release adds better error messages (thanks @msabramo) - and adds support for using VCR as a decorator (thanks @smallcode for the motivation) - 0.5.0 - Change the ``response_of`` method to ``responses_of`` since cassettes can now contain more than one response for a request. - Since this changes the API, I'm bumping the version. - Also includes 2 bugfixes: - a better error message when attempting to overwrite a cassette file, - and a fix for a bug with requests sessions (thanks @msabramo) - 0.4.0 - Change default request recording behavior for multiple requests. - If you make the same request multiple times to the same URL, the response might be different each time (maybe the response has a timestamp in it or something), so this will make the same request multiple times and save them all. - Then, when you are replaying the cassette, the responses will be played back in the same order in which they were received. - If you were making multiple requests to the same URL in a cassette before version 0.4.0, you might need to regenerate your cassette files. - Also, removes support for the cassette.play\_count counter API, since individual requests aren't unique anymore. - A cassette might contain the same request several times. - Also removes secure overwrite feature since that was breaking overwriting files in Windows - And fixes a bug preventing request's automatic body decompression from working. - 0.3.5 - Fix compatibility with requests 2.x - 0.3.4 - Bugfix: close file before renaming it. This fixes an issue on Windows. Thanks @smallcode for the fix. - 0.3.3 - Bugfix for error message when an unregistered custom matcher was used - 0.3.2 - Fix issue with new config syntax and the ``match_on`` parameter. Thanks, @chromy! - 0.3.1 - Fix issue causing full paths to be sent on the HTTP request line. - 0.3.0 - *Backwards incompatible release* - Added support for record modes, and changed the default recording behavior to the "once" record mode. Please see the documentation on record modes for more. - Added support for custom request matching, and changed the default request matching behavior to match only on the URL and method. - Also, improved the httplib mocking to add support for the ``HTTPConnection.send()`` method. - This means that requests won't actually be sent until the response is read, since I need to record the entire request in order to match up the appropriate response. - I don't think this should cause any issues unless you are sending requests without ever loading the response (which none of the standard httplib wrappers do, as far as I know). - Thanks to @fatuhoku for some of the ideas and the motivation behind this release. - 0.2.1 - Fixed missing modules in setup.py - 0.2.0 - Added configuration API, which lets you configure some settings on VCR (see the README). - Also, VCR no longer saves cassettes if they haven't changed at all and supports JSON as well as YAML (thanks @sirpengi). - Added amazing new skeumorphic logo, thanks @hairarrow. - 0.1.0 - *backwards incompatible release - delete your old cassette files* - This release adds the ability to access the cassette to make assertions on it - as well as a major code refactor thanks to @dlecocq. - It also fixes a couple longstanding bugs with redirects and HTTPS. [#3 and #4] - 0.0.4 - If you have libyaml installed, vcrpy will use the c bindings instead. Speed up your tests! Thanks @dlecocq - 0.0.3 - Add support for requests 1.2.3. Support for older versions of requests dropped (thanks @vitormazzi and @bryanhelmig) - 0.0.2 - Add support for requests / urllib3 - 0.0.1 - Initial Release vcrpy-6.0.1/docs/conf.py000066400000000000000000000243511455450430400151210ustar00rootroot00000000000000# # vcrpy documentation build configuration file, created by # sphinx-quickstart on Sun Sep 13 11:18:00 2015. # # This file is execfile()d with the current directory set to its # containing dir. # # Note that not all possible configuration values are present in this # autogenerated file. # # All configuration values have a default; values that are commented out # serve to show the default. import codecs import os import re here = os.path.abspath(os.path.dirname(__file__)) def read(*parts): # intentionally *not* adding an encoding option to open, See: # https://github.com/pypa/virtualenv/issues/201#issuecomment-3145690 with codecs.open(os.path.join(here, *parts), "r") as fp: return fp.read() def find_version(*file_paths): version_file = read(*file_paths) version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", version_file, re.M) if version_match: return version_match.group(1) raise RuntimeError("Unable to find version string.") autodoc_default_options = { "members": None, "undoc-members": None, } # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. # sys.path.insert(0, os.path.abspath('.')) # -- General configuration ------------------------------------------------ # If your documentation needs a minimal Sphinx version, state it here. # needs_sphinx = '1.0' # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = [ "sphinx.ext.autodoc", "sphinx.ext.intersphinx", "sphinx.ext.coverage", "sphinx.ext.viewcode", "sphinx.ext.todo", "sphinx.ext.githubpages", ] # Add any paths that contain templates here, relative to this directory. templates_path = ["_templates"] # The suffix(es) of source filenames. # You can specify multiple suffix as a list of string: # source_suffix = ['.rst', '.md'] source_suffix = ".rst" # The encoding of source files. # source_encoding = 'utf-8-sig' # The master toctree document. master_doc = "index" # General information about the project. project = "vcrpy" copyright = "2015, Kevin McCarthy" author = "Kevin McCarthy" # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. # version = "1.7.4" # The full version, including alpha/beta/rc tags. version = release = find_version("..", "vcr", "__init__.py") # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. # # This is also used if you do content translation via gettext catalogs. # Usually you set "language" from the command line for these cases. language = "en" # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: # today = '' # Else, today_fmt is used as the format for a strftime call. # today_fmt = '%B %d, %Y' # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. exclude_patterns = ["_build"] # The reST default role (used for this markup: `text`) to use for all # documents. # default_role = None # If true, '()' will be appended to :func: etc. cross-reference text. # add_function_parentheses = True # If true, the current module name will be prepended to all description # unit titles (such as .. function::). # add_module_names = True # If true, sectionauthor and moduleauthor directives will be shown in the # output. They are ignored by default. # show_authors = False # The name of the Pygments (syntax highlighting) style to use. pygments_style = "sphinx" # A list of ignored prefixes for module index sorting. # modindex_common_prefix = [] # If true, keep warnings as "system message" paragraphs in the built documents. # keep_warnings = False # If true, `todo` and `todoList` produce output, else they produce nothing. todo_include_todos = False # -- Options for HTML output ---------------------------------------------- # The theme to use for HTML and HTML Help pages. # https://read-the-docs.readthedocs.io/en/latest/theme.html#how-do-i-use-this-locally-and-on-read-the-docs # if "READTHEDOCS" not in os.environ: # import sphinx_rtd_theme # # html_theme = "sphinx_rtd_theme" # html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the # documentation. # html_theme_options = {} # The name for this set of Sphinx documents. If None, it defaults to # " v documentation". # html_title = None # A shorter title for the navigation bar. Default is the same as html_title. # html_short_title = None # The name of an image file (relative to this directory) to place at the top # of the sidebar. # html_logo = None # The name of an image file (within the static path) to use as favicon of the # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 # pixels large. # html_favicon = None # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". html_static_path = ["_static"] # Add any extra paths that contain custom files (such as robots.txt or # .htaccess) here, relative to this directory. These files are copied # directly to the root of the documentation. # html_extra_path = [] # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format. # html_last_updated_fmt = '%b %d, %Y' # If true, SmartyPants will be used to convert quotes and dashes to # typographically correct entities. # html_use_smartypants = True # Custom sidebar templates, maps document names to template names. # html_sidebars = {} html_sidebars = {"**": ["globaltoc.html", "relations.html", "sourcelink.html", "searchbox.html"]} # Additional templates that should be rendered to pages, maps page names to # template names. # html_additional_pages = {} # If false, no module index is generated. # html_domain_indices = True # If false, no index is generated. # html_use_index = True # If true, the index is split into individual pages for each letter. # html_split_index = False # If true, links to the reST sources are added to the pages. # html_show_sourcelink = True # If true, "Created using Sphinx" is shown in the HTML footer. Default is True. # html_show_sphinx = True # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. # html_show_copyright = True # If true, an OpenSearch description file will be output, and all pages will # contain a tag referring to it. The value of this option must be the # base URL from which the finished HTML is served. # html_use_opensearch = '' # This is the file name suffix for HTML files (e.g. ".xhtml"). # html_file_suffix = None # Language to be used for generating the HTML full-text search index. # Sphinx supports the following languages: # 'da', 'de', 'en', 'es', 'fi', 'fr', 'hu', 'it', 'ja' # 'nl', 'no', 'pt', 'ro', 'ru', 'sv', 'tr' # html_search_language = 'en' # A dictionary with options for the search language support, empty by default. # Now only 'ja' uses this config value # html_search_options = {'type': 'default'} # The name of a javascript file (relative to the configuration directory) that # implements a search results scorer. If empty, the default will be used. # html_search_scorer = 'scorer.js' # Output file base name for HTML help builder. htmlhelp_basename = "vcrpydoc" # -- Options for LaTeX output --------------------------------------------- latex_elements = { # The paper size ('letterpaper' or 'a4paper'). # 'papersize': 'letterpaper', # The font size ('10pt', '11pt' or '12pt'). # 'pointsize': '10pt', # Additional stuff for the LaTeX preamble. # 'preamble': '', # Latex figure (float) alignment # 'figure_align': 'htbp', } # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, # author, documentclass [howto, manual, or own class]). latex_documents = [ (master_doc, "vcrpy.tex", "vcrpy Documentation", "Kevin McCarthy", "manual"), ] # The name of an image file (relative to this directory) to place at the top of # the title page. # latex_logo = None # For "manual" documents, if this is true, then toplevel headings are parts, # not chapters. # latex_use_parts = False # If true, show page references after internal links. # latex_show_pagerefs = False # If true, show URL addresses after external links. # latex_show_urls = False # Documents to append as an appendix to all manuals. # latex_appendices = [] # If false, no module index is generated. # latex_domain_indices = True # -- Options for manual page output --------------------------------------- # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). man_pages = [(master_doc, "vcrpy", "vcrpy Documentation", [author], 1)] # If true, show URL addresses after external links. # man_show_urls = False # -- Options for Texinfo output ------------------------------------------- # Grouping the document tree into Texinfo files. List of tuples # (source start file, target name, title, author, # dir menu entry, description, category) texinfo_documents = [ ( master_doc, "vcrpy", "vcrpy Documentation", author, "vcrpy", "One line description of project.", "Miscellaneous", ), ] # Documents to append as an appendix to all manuals. # texinfo_appendices = [] # If false, no module index is generated. # texinfo_domain_indices = True # How to display URL addresses: 'footnote', 'no', or 'inline'. # texinfo_show_urls = 'footnote' # If true, do not generate a @detailmenu in the "Top" node's menu. # texinfo_no_detailmenu = False # Example configuration for intersphinx: refer to the Python standard library. intersphinx_mapping = {"https://docs.python.org/": None} html_theme = "alabaster" vcrpy-6.0.1/docs/configuration.rst000066400000000000000000000034341455450430400172220ustar00rootroot00000000000000Configuration ============= If you don't like VCR's defaults, you can set options by instantiating a ``VCR`` class and setting the options on it. .. code:: python import vcr my_vcr = vcr.VCR( serializer='json', cassette_library_dir='fixtures/cassettes', record_mode='once', match_on=['uri', 'method'], ) with my_vcr.use_cassette('test.json'): # your http code here Otherwise, you can override options each time you use a cassette. .. code:: python with vcr.use_cassette('test.yml', serializer='json', record_mode='once'): # your http code here Note: Per-cassette overrides take precedence over the global config. Request matching ---------------- Request matching is configurable and allows you to change which requests VCR considers identical. The default behavior is ``['method', 'scheme', 'host', 'port', 'path', 'query']`` which means that requests with both the same URL and method (ie POST or GET) are considered identical. This can be configured by changing the ``match_on`` setting. The following options are available : - method (for example, POST or GET) - uri (the full URI) - scheme (for example, HTTP or HTTPS) - host (the hostname of the server receiving the request) - port (the port of the server receiving the request) - path (the path of the request) - query (the query string of the request) - raw\_body (the entire request body as is) - body (the entire request body unmarshalled by content-type i.e. xmlrpc, json, form-urlencoded, falling back on raw\_body) - headers (the headers of the request) Backwards compatible matchers: - url (the ``uri`` alias) If these options don't work for you, you can also register your own request matcher. This is described in the Advanced section of this README. vcrpy-6.0.1/docs/contributing.rst000066400000000000000000000124161455450430400170620ustar00rootroot00000000000000Contributing ============ .. image:: _static/vcr.svg :alt: vcr.py logo :align: right 🚀 Milestones -------------- For anyone interested in the roadmap and projected release milestones please see the following link: `MILESTONES `_ ---- 🎁 Contributing Issues and PRs ------------------------------- - Issues and PRs will get triaged and assigned to the appropriate milestone. - PRs get priority over issues. - The maintainers have limited bandwidth and do so **voluntarily**. So whilst reporting issues are valuable, please consider: - contributing an issue with a toy repo that replicates the issue. - contributing PRs is a more valuable donation of your time and effort. Thanks again for your interest and support in VCRpy. We really appreciate it. ---- 👥 Collaborators ----------------- We also have a large test matrix to cover and would like members to volunteer covering these roles. ============ ==================== ================= ================== ====================== **Library** **Issue Triager(s)** **Maintainer(s)** **PR Reviewer(s)** **Release Manager(s)** ------------ -------------------- ----------------- ------------------ ---------------------- ``core`` Needs support Needs support Needs support @neozenith ``requests`` @neozenith Needs support @neozenith @neozenith ``aiohttp`` Needs support Needs support Needs support @neozenith ``urllib3`` Needs support Needs support Needs support @neozenith ``httplib2`` Needs support Needs support Needs support @neozenith ``tornado4`` Needs support Needs support Needs support @neozenith ``boto3`` Needs support Needs support Needs support @neozenith ============ ==================== ================= ================== ====================== Role Descriptions ~~~~~~~~~~~~~~~~~ **Issue Triager:** Simply adding these three labels for incoming issues means a lot for maintaining this project: - ``bug`` or ``enhancement`` - Which library does it affect? ``core``, ``aiohttp``, ``requests``, ``urllib3``, ``tornado4``, ``httplib2`` - If it is a bug, is it ``Verified Can Replicate`` or ``Requires Help Replicating`` - Thanking people for raising issues. Feedback is always appreciated. - Politely asking if they are able to link to an example repo that replicates the issue if they haven't already. Being able to *clone and go* helps the next person and we like that. 😃 **Maintainer:** This involves creating PRs to address bugs and enhancement requests. It also means maintaining the test suite, docstrings and documentation . **PR Reviewer:** The PR reviewer is a second set of eyes to see if: - Are there tests covering the code paths added/modified? - Do the tests and modifications make sense seem appropriate? - Add specific feedback, even on approvals, why it is accepted. eg "I like how you use a context manager there. 😄 " - Also make sure they add a line to `docs/changelog.rst` to claim credit for their contribution. **Release Manager:** - Ensure CI is passing. - Create a release on github and tag it with the changelog release notes. - ``python3 setup.py build sdist bdist_wheel`` - ``twine upload dist/*`` - Go to ReadTheDocs build page and trigger a build https://readthedocs.org/projects/vcrpy/builds/ ---- Running VCR's test suite ------------------------ The tests are all run automatically on `Github Actions CI `__, but you can also run them yourself using `pytest `__. In order for the boto3 tests to run, you will need an AWS key. Refer to the `boto3 documentation `__ for how to set this up. I have marked the boto3 tests as optional in Travis so you don't have to worry about them failing if you submit a pull request. Using Pyenv with VCR's test suite --------------------------------- Pyenv is a tool for managing multiple installation of python on your system. See the full documentation at their `github `_ in this example:: git clone https://github.com/pyenv/pyenv ~/.pyenv # Add ~/.pyenv/bin to your PATH export PATH="$PATH:~/.pyenv/bin" # Setup shim paths eval "$(pyenv init -)" # Install supported versions (at time of writing), this does not activate them pyenv install 3.12.0 pypy3.10 # This activates them pyenv local 3.12.0 pypy3.10 # Run the whole test suite pip install .[test] ./run_tests.sh Troubleshooting on MacOSX ------------------------- If you have this kind of error when running tests : .. code:: python __main__.ConfigurationError: Curl is configured to use SSL, but we have not been able to determine which SSL backend it is using. Please see PycURL documentation for how to specify the SSL backend manually. Then you need to define some environment variables: .. code:: bash export PYCURL_SSL_LIBRARY=openssl export LDFLAGS=-L/usr/local/opt/openssl/lib export CPPFLAGS=-I/usr/local/opt/openssl/include Reference : `stackoverflow issue `__ vcrpy-6.0.1/docs/debugging.rst000066400000000000000000000041331455450430400163030ustar00rootroot00000000000000Debugging ========= VCR.py has a few log messages you can turn on to help you figure out if HTTP requests are hitting a real server or not. You can turn them on like this: .. code:: python import vcr import requests import logging logging.basicConfig() # you need to initialize logging, otherwise you will not see anything from vcrpy vcr_log = logging.getLogger("vcr") vcr_log.setLevel(logging.INFO) with vcr.use_cassette('headers.yml'): requests.get('http://httpbin.org/headers') The first time you run this, you will see:: INFO:vcr.stubs: not in cassette, sending to real server The second time, you will see:: INFO:vcr.stubs:Playing response for from cassette If you set the loglevel to DEBUG, you will also get information about which matchers didn't match. This can help you with debugging custom matchers. CannotOverwriteExistingCassetteException ---------------------------------------- When a request failed to be found in an existing cassette, VCR.py tries to get the request(s) that may be similar to the one being searched. The goal is to see which matcher(s) failed and understand what part of the failed request may have changed. It can return multiple similar requests with : - the matchers that have succeeded - the matchers that have failed - for each failed matchers, why it has failed with an assertion message CannotOverwriteExistingCassetteException message example : .. code:: CannotOverwriteExistingCassetteException: Can't overwrite existing cassette ('cassette.yaml') in your current record mode ('once'). No match for the request () was found. Found 1 similar requests with 1 different matchers : 1 - (). Matchers succeeded : ['method', 'scheme', 'host', 'port', 'path'] Matchers failed : query - assertion failure : [('alt', 'json'), ('maxResults', '200')] != [('alt', 'json'), ('maxResults', '500')] vcrpy-6.0.1/docs/index.rst000066400000000000000000000004441455450430400154600ustar00rootroot00000000000000.. include:: ../README.rst Contents ======== .. toctree:: :maxdepth: 3 installation usage configuration advanced api debugging contributing changelog ================== Indices and tables ================== * :ref:`genindex` * :ref:`modindex` * :ref:`search` vcrpy-6.0.1/docs/installation.rst000066400000000000000000000045551455450430400170610ustar00rootroot00000000000000Installation ============ VCR.py is a package on `PyPI `__, so you can install with pip:: pip3 install vcrpy Compatibility ------------- VCR.py supports Python 3.8+, and `pypy `__. The following HTTP libraries are supported: - ``aiohttp`` - ``boto3`` - ``http.client`` - ``httplib2`` - ``requests`` (>=2.16.2 versions) - ``tornado.httpclient`` - ``urllib2`` - ``urllib3`` - ``httpx`` Speed ----- VCR.py runs about 10x faster when `pyyaml `__ can use the `libyaml extensions `__. In order for this to work, libyaml needs to be available when pyyaml is built. Additionally the flag is cached by pip, so you might need to explicitly avoid the cache when rebuilding pyyaml. 1. Test if pyyaml is built with libyaml. This should work:: python3 -c 'from yaml import CLoader' 2. Install libyaml according to your Linux distribution, or using `Homebrew `__ on Mac:: brew install libyaml # Mac with Homebrew apt-get install libyaml-dev # Ubuntu dnf install libyaml-devel # Fedora 3. Rebuild pyyaml with libyaml:: pip3 uninstall pyyaml pip3 --no-cache-dir install pyyaml Upgrade ------- New Cassette Format ~~~~~~~~~~~~~~~~~~~ The cassette format has changed in *VCR.py 1.x*, the *VCR.py 0.x* cassettes cannot be used with *VCR.py 1.x*. The easiest way to upgrade is to simply delete your cassettes and re-record all of them. VCR.py also provides a migration script that attempts to upgrade your 0.x cassettes to the new 1.x format. To use it, run the following command:: python3 -m vcr.migration PATH The PATH can be either a path to the directory with cassettes or the path to a single cassette. *Note*: Back up your cassettes files before migration. The migration *should* only modify cassettes using the old 0.x format. New serializer / deserializer API ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ If you made a custom serializer, you will need to update it to match the new API in version 1.0.x - Serializers now take dicts and return strings. - Deserializers take strings and return dicts (instead of requests, responses pair) Ruby VCR compatibility ---------------------- VCR.py does not aim to match the format of the Ruby VCR YAML files. Cassettes generated by Ruby's VCR are not compatible with VCR.py. vcrpy-6.0.1/docs/requirements.txt000066400000000000000000000000411455450430400170740ustar00rootroot00000000000000sphinx<8 sphinx_rtd_theme==2.0.0 vcrpy-6.0.1/docs/usage.rst000066400000000000000000000124761455450430400154650ustar00rootroot00000000000000Usage ===== .. code:: python import vcr import urllib.request with vcr.use_cassette('fixtures/vcr_cassettes/synopsis.yaml'): response = urllib.request.urlopen('http://www.iana.org/domains/reserved').read() assert b'Example domains' in response Run this test once, and VCR.py will record the HTTP request to ``fixtures/vcr_cassettes/synopsis.yaml``. Run it again, and VCR.py will replay the response from iana.org when the http request is made. This test is now fast (no real HTTP requests are made anymore), deterministic (the test will continue to pass, even if you are offline, or iana.org goes down for maintenance) and accurate (the response will contain the same headers and body you get from a real request). You can also use VCR.py as a decorator. The same request above would look like this: .. code:: python @vcr.use_cassette('fixtures/vcr_cassettes/synopsis.yaml') def test_iana(): response = urllib.request.urlopen('http://www.iana.org/domains/reserved').read() assert b'Example domains' in response When using the decorator version of ``use_cassette``, it is possible to omit the path to the cassette file. .. code:: python @vcr.use_cassette() def test_iana(): response = urllib.request.urlopen('http://www.iana.org/domains/reserved').read() assert b'Example domains' in response In this case, the cassette file will be given the same name as the test function, and it will be placed in the same directory as the file in which the test is defined. See the Automatic Test Naming section below for more details. Record Modes ------------ VCR supports 4 record modes (with the same behavior as Ruby's VCR): once ~~~~ - Replay previously recorded interactions. - Record new interactions if there is no cassette file. - Cause an error to be raised for new requests if there is a cassette file. It is similar to the new\_episodes record mode, but will prevent new, unexpected requests from being made (e.g. because the request URI changed). once is the default record mode, used when you do not set one. new\_episodes ~~~~~~~~~~~~~ - Record new interactions. - Replay previously recorded interactions. It is similar to the once record mode, but will always record new interactions, even if you have an existing recorded one that is similar, but not identical. This was the default behavior in versions < 0.3.0 none ~~~~ - Replay previously recorded interactions. - Cause an error to be raised for any new requests. This is useful when your code makes potentially dangerous HTTP requests. The none record mode guarantees that no new HTTP requests will be made. all ~~~ - Record new interactions. - Never replay previously recorded interactions. This can be temporarily used to force VCR to re-record a cassette (i.e. to ensure the responses are not out of date) or can be used when you simply want to log all HTTP requests. Unittest Integration -------------------- Inherit from ``VCRTestCase`` for automatic recording and playback of HTTP interactions. .. code:: python from vcr.unittest import VCRTestCase import requests class MyTestCase(VCRTestCase): def test_something(self): response = requests.get('http://example.com') Similar to how VCR.py returns the cassette from the context manager, ``VCRTestCase`` makes the cassette available as ``self.cassette``: .. code:: python self.assertEqual(len(self.cassette), 1) self.assertEqual(self.cassette.requests[0].uri, 'http://example.com') By default cassettes will be placed in the ``cassettes`` subdirectory next to the test, named according to the test class and method. For example, the above test would read from and write to ``cassettes/MyTestCase.test_something.yaml`` The configuration can be modified by overriding methods on your subclass: ``_get_vcr_kwargs``, ``_get_cassette_library_dir`` and ``_get_cassette_name``. To modify the ``VCR`` object after instantiation, for example to add a matcher, you can hook on ``_get_vcr``, for example: .. code:: python class MyTestCase(VCRTestCase): def _get_vcr(self, **kwargs): myvcr = super(MyTestCase, self)._get_vcr(**kwargs) myvcr.register_matcher('mymatcher', mymatcher) myvcr.match_on = ['mymatcher'] return myvcr See `the source `__ for the default implementations of these methods. If you implement a ``setUp`` method on your test class then make sure to call the parent version ``super().setUp()`` in your own in order to continue getting the cassettes produced. VCRMixin ~~~~~~~~ In case inheriting from ``VCRTestCase`` is difficult because of an existing class hierarchy containing tests in the base classes, inherit from ``VCRMixin`` instead. .. code:: python from vcr.unittest import VCRMixin import requests import unittest class MyTestMixin(VCRMixin): def test_something(self): response = requests.get(self.url) class MyTestCase(MyTestMixin, unittest.TestCase): url = 'http://example.com' Pytest Integration ------------------ A Pytest plugin is available here : `pytest-vcr `__. Alternative plugin, that also provides network access blocking: `pytest-recording `__. vcrpy-6.0.1/pyproject.toml000066400000000000000000000014621455450430400156040ustar00rootroot00000000000000[tool.codespell] skip = '.git,*.pdf,*.svg,.tox' ignore-regex = "\\\\[fnrstv]" # # ignore-words-list = '' [tool.pytest.ini_options] addopts = [ "--strict-config", "--strict-markers", ] markers = ["online"] filterwarnings = [ "error", '''ignore:datetime\.datetime\.utcfromtimestamp\(\) is deprecated and scheduled for removal in a future version.*:DeprecationWarning''', ] [tool.ruff] select = [ "B", # flake8-bugbear "C4", # flake8-comprehensions "COM", # flake8-commas "E", # pycodestyle error "F", # pyflakes "I", # isort "ISC", # flake8-implicit-str-concat "PIE", # flake8-pie "RUF", # Ruff-specific rules "UP", # pyupgrade "W", # pycodestyle warning ] line-length = 110 target-version = "py38" [tool.ruff.isort] known-first-party = ["vcr"] vcrpy-6.0.1/runtests.sh000077500000000000000000000004321455450430400151120ustar00rootroot00000000000000#!/bin/bash # If you are getting an INVOCATION ERROR for this script then there is a good chance you are running on Windows. # You can and should use WSL for running tests on Windows when it calls bash scripts. REQUESTS_CA_BUNDLE=`python3 -m pytest_httpbin.certs` exec pytest "$@" vcrpy-6.0.1/setup.cfg000066400000000000000000000000321455450430400145010ustar00rootroot00000000000000[bdist_wheel] universal=1 vcrpy-6.0.1/setup.py000066400000000000000000000074571455450430400144140ustar00rootroot00000000000000#!/usr/bin/env python import codecs import os import re import sys from setuptools import find_packages, setup from setuptools.command.test import test as TestCommand long_description = open("README.rst").read() here = os.path.abspath(os.path.dirname(__file__)) def read(*parts): # intentionally *not* adding an encoding option to open, See: # https://github.com/pypa/virtualenv/issues/201#issuecomment-3145690 with codecs.open(os.path.join(here, *parts), "r") as fp: return fp.read() def find_version(*file_paths): version_file = read(*file_paths) version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", version_file, re.M) if version_match: return version_match.group(1) raise RuntimeError("Unable to find version string.") class PyTest(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = [] self.test_suite = True def run_tests(self): # import here, cause outside the eggs aren't loaded import pytest errno = pytest.main(self.test_args) sys.exit(errno) install_requires = [ "PyYAML", "wrapt", "yarl", # Support for urllib3 >=2 needs CPython >=3.10 # so we need to block urllib3 >=2 for Python <3.10 and PyPy for now. # Note that vcrpy would work fine without any urllib3 around, # so this block and the dependency can be dropped at some point # in the future. For more Details: # https://github.com/kevin1024/vcrpy/pull/699#issuecomment-1551439663 "urllib3 <2; python_version <'3.10'", # https://github.com/kevin1024/vcrpy/pull/775#issuecomment-1847849962 "urllib3 <2; platform_python_implementation =='PyPy'", ] extras_require = { "tests": [ "aiohttp", "boto3", "httplib2", "httpx", "pytest-aiohttp", "pytest-asyncio", "pytest-cov", "pytest-httpbin", "pytest", "requests>=2.22.0", "tornado", "urllib3", # Needed to un-break httpbin 0.7.0. For httpbin >=0.7.1 and after, # this pin and the dependency itself can be removed, provided # that the related bug in httpbin has been fixed: # https://github.com/kevin1024/vcrpy/issues/645#issuecomment-1562489489 # https://github.com/postmanlabs/httpbin/issues/673 # https://github.com/postmanlabs/httpbin/pull/674 "Werkzeug==2.0.3", ], } setup( name="vcrpy", version=find_version("vcr", "__init__.py"), description=("Automatically mock your HTTP interactions to simplify and speed up testing"), long_description=long_description, long_description_content_type="text/x-rst", author="Kevin McCarthy", author_email="me@kevinmccarthy.org", url="https://github.com/kevin1024/vcrpy", packages=find_packages(exclude=["tests*"]), python_requires=">=3.8", install_requires=install_requires, license="MIT", extras_require=extras_require, tests_require=extras_require["tests"], classifiers=[ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Software Development :: Testing", "Topic :: Internet :: WWW/HTTP", "License :: OSI Approved :: MIT License", ], ) vcrpy-6.0.1/tests/000077500000000000000000000000001455450430400140275ustar00rootroot00000000000000vcrpy-6.0.1/tests/__init__.py000066400000000000000000000000001455450430400161260ustar00rootroot00000000000000vcrpy-6.0.1/tests/assertions.py000066400000000000000000000006211455450430400165720ustar00rootroot00000000000000import json def assert_cassette_empty(cass): assert len(cass) == 0 assert cass.play_count == 0 def assert_cassette_has_one_response(cass): assert len(cass) == 1 assert cass.play_count == 1 def assert_is_json_bytes(b: bytes): assert isinstance(b, bytes) try: json.loads(b) except Exception as error: raise AssertionError() from error assert True vcrpy-6.0.1/tests/fixtures/000077500000000000000000000000001455450430400157005ustar00rootroot00000000000000vcrpy-6.0.1/tests/fixtures/migration/000077500000000000000000000000001455450430400176715ustar00rootroot00000000000000vcrpy-6.0.1/tests/fixtures/migration/new_cassette.json000066400000000000000000000021301455450430400232440ustar00rootroot00000000000000{ "version": 1, "interactions": [ { "request": { "body": null, "headers": { "accept": ["*/*"], "accept-encoding": ["gzip, deflate, compress"], "user-agent": ["python-requests/2.2.1 CPython/2.6.1 Darwin/10.8.0"] }, "method": "GET", "uri": "http://httpbin.org/ip" }, "response": { "status": { "message": "OK", "code": 200 }, "headers": { "access-control-allow-origin": ["*"], "content-type": ["application/json"], "date": ["Mon, 21 Apr 2014 23:13:40 GMT"], "server": ["gunicorn/0.17.4"], "content-length": ["32"], "connection": ["keep-alive"] }, "body": { "string": "{\n \"origin\": \"217.122.164.194\"\n}" } } } ] } vcrpy-6.0.1/tests/fixtures/migration/new_cassette.yaml000066400000000000000000000011261455450430400232410ustar00rootroot00000000000000version: 1 interactions: - request: body: null headers: accept: ['*/*'] accept-encoding: ['gzip, deflate, compress'] user-agent: ['python-requests/2.2.1 CPython/2.6.1 Darwin/10.8.0'] method: GET uri: http://httpbin.org/ip response: body: {string: "{\n \"origin\": \"217.122.164.194\"\n}"} headers: access-control-allow-origin: ['*'] content-type: [application/json] date: ['Mon, 21 Apr 2014 23:06:09 GMT'] server: [gunicorn/0.17.4] content-length: ['32'] connection: [keep-alive] status: {code: 200, message: OK} vcrpy-6.0.1/tests/fixtures/migration/not_cassette.txt000066400000000000000000000000271455450430400231240ustar00rootroot00000000000000This is not a cassette vcrpy-6.0.1/tests/fixtures/migration/old_cassette.json000066400000000000000000000017661455450430400232470ustar00rootroot00000000000000[ { "request": { "body": null, "protocol": "http", "method": "GET", "headers": { "accept-encoding": "gzip, deflate, compress", "accept": "*/*", "user-agent": "python-requests/2.2.1 CPython/2.6.1 Darwin/10.8.0" }, "host": "httpbin.org", "path": "/ip", "port": 80 }, "response": { "status": { "message": "OK", "code": 200 }, "headers": [ "access-control-allow-origin: *\r\n", "content-type: application/json\r\n", "date: Mon, 21 Apr 2014 23:13:40 GMT\r\n", "server: gunicorn/0.17.4\r\n", "content-length: 32\r\n", "connection: keep-alive\r\n" ], "body": { "string": "{\n \"origin\": \"217.122.164.194\"\n}" } } } ] vcrpy-6.0.1/tests/fixtures/migration/old_cassette.yaml000066400000000000000000000015451455450430400232330ustar00rootroot00000000000000- request: !!python/object:vcr.request.Request body: null headers: !!python/object/apply:__builtin__.frozenset - - !!python/tuple [accept-encoding, 'gzip, deflate, compress'] - !!python/tuple [user-agent, python-requests/2.2.1 CPython/2.6.1 Darwin/10.8.0] - !!python/tuple [accept, '*/*'] host: httpbin.org method: GET path: /ip port: 80 protocol: http response: body: {string: !!python/unicode "{\n \"origin\": \"217.122.164.194\"\n}"} headers: [!!python/unicode "access-control-allow-origin: *\r\n", !!python/unicode "content-type: application/json\r\n", !!python/unicode "date: Mon, 21 Apr 2014 23:06:09 GMT\r\n", !!python/unicode "server: gunicorn/0.17.4\r\n", !!python/unicode "content-length: 32\r\n", !!python/unicode "connection: keep-alive\r\n"] status: {code: 200, message: OK} vcrpy-6.0.1/tests/fixtures/wild/000077500000000000000000000000001455450430400166375ustar00rootroot00000000000000vcrpy-6.0.1/tests/fixtures/wild/domain_redirect.yaml000066400000000000000000000227501455450430400226610ustar00rootroot00000000000000version: 1 interactions: - request: body: null headers: Accept: ['*/*'] Accept-Encoding: ['gzip, deflate, compress'] User-Agent: ['vcrpy-test'] method: GET uri: http://seomoz.org/ response: body: {string: ''} headers: Location: ['http://moz.com/'] Server: ['BigIP'] Connection: ['Keep-Alive'] Content-Length: ['0'] status: {code: 301, message: Moved Permanently} - request: body: null headers: Accept: ['*/*'] Accept-Encoding: ['gzip, deflate, compress'] User-Agent: ['vcrpy-test'] method: GET uri: http://moz.com/ response: body: string: !!binary | H4sIAAAAAAAAA+08a3PbOJKfV78Co7nETo1I8SlKjuWUXxlnzpl4EieZuVTKBZKgyJgiGZKSbM9O 1f2N+3v3S64bIClQkh3ntXu1tUlskiDQ3Wj0G2B2fzh6cXj+x9kxCctpvNfZ/UFR3kUBiUvy7Jg4 7/fILr4gXkyLYtxNUuVDAS+ViI3EZSguTpfENJmMuyzpwpgf3rHEj4L3irIEWcGDP58CeS9Yw0/A +jSQSVnBwYZNE10BoShtMCGj/l4HSCijMmZ7r45fTNMbEhUkSRfkeXqjkldpUC5ozghNfHKYTqez JCqvSZDm5ICVJcvJc5pfsjJKJipRcMxuXwDrdDq7U1ZS4oU0L1g57s7KQBl296rmsCwzhX2cRfNx 93fl9b4C0DNaRm7MusRLk5IlMObZ8Zj5E9bzwjydsrG+cfih6K2cX2fy2JJdlX1kyeOGBkEC6QOU OEouSc7icZfGMI+EljC2BAjQkGVx5AEtadLPi+Knq2kMr3BW4+7LV6+IoWpdEuYsGHeRjJ1+P2DM L1T87c7yhOWql077wEs3TicCHSc6oTCH7jxiiyzNS4nUReSX4Vg3NA0miAsidfdZ4eVRhtRII96y GHAwUqZiod4y4uUMJkFgFUlRLVuPTOvlgRWk8XUZeQWMSeOix5eUxjG5jBK/IGlQA0eYIYszcp3O SMxonpAocdMZdJ8uF/st20KxiAvoXBFShowsmLtVkGlalGQeuTkFcF4jNoAjTYDxrALE8kLl7EFh EbMkRe6Nu/2+7w1DPymmNzSbT1UvTmd+kAN9asLKPgg4K4u+GFEAo31YwOgmVz8UT1zfGHjGcDhy mD/Qh5pv6czTKdNt2wsM3eqSC89PQDryGevu7VZAgARJIoryOmZFyFhZr/M9CeLj+pL8qF5RPPFH pu/pTmDpph4wx3YcNhwarm0OXMv0NKOWOy6wMKBFomCPLK4AnSllOvNCJYIlU7KcAYuztGB+lxTR DQPtt50r2/k84qMpnQDxAZ0jVJRepbpXbEfNkskTx7RsatsWBbIHTqC5emBZ2tA1zKFv6o62plj3 odQxrhzjm1HqGJxSag9HI5caI83wDVcfjthgRH3NtzWdaiPD+yJKdd260lGAvhGtAIsTO3R9NkKy KPOCkRkEOrVNyzNHwcDQTPaFxFpArPUNibUEsSPNZgPHd6ipGcwOLAbSQIPBgALVQ88X8to2YHnq pmUh2a4kTf1MCDb0XE7Mo0magOLEK9YV6ECD2oyQbSnLo+BamesyeEOP02j+84nd/+OP/YkbXv4e /TYNWf/t4mrm9G+Cm7OTydPzjx9ibbyB3EmaToC/RVQyhYOvVFnCEFyEbywrWZx55dHHP8wwu05s 46k/O4eJ/WdwOYt+ObGHw99+O3z1egOCaTGnceSDrVY1me7B/mCo7ZsD0x5ZT48OrQNjdKTp1qFh a/bAPDwS8xeQsjzNWF5eg5FYROiHd6jngYkuLyJfAqnbAxsUU5N80HJk4O5ksN7tEUNrODLMgWHZ Fbq+CBI6u27qX9fBBbf4+EsB38GuiEu9y0mOLgL4FgPX5JYkjQowtcgFP5qTyEeRSNH9NZFKCkOC OF3wXhgSAU4AUnWQYLnxjCkgJ3MKToYWJXZUkHgKXiVfIqlGNm+azjUGqVPe4JUoBMedNhQWGU1M 4gGDKhxVZ1prl9QIzcV8QoRH74JLB2Fm0SQE3prAUwg2xl3w2BjIQLgTkiCKQfR/DIIA3AD4ywJi qymgBDVg2/qjLgHIQM9zXTNUs2cY6vAUgPYs1TgZmurAUzTV6WmKDi81dcCv8BNrPVMdHjpDdQQ3 Ts/BwVpvYKmDnuYpuoZDhtA2UC1FH6nDHhgjh0/iDYAOlYFqQjfVhn4GwAAkiom9VOcUaLB6MMY+ 1TVV79nqCHrCX0ABI3g/vJ5oc8MBUI5qeZxGpAuoHfAr/ISaB2QAAoTCfwv8ugP060i1bld3Cr8D CDB9HITgBKD6B9G8MTSgGonGmdWT6jXT83QdMfWgm644MCt+A+hsjthDLg6ADhOmYMB1qFjqMNQH p0OcsamrVqhDg2nhjHrNX/ke57R5rnPAaJ7wVbwhz/lCGAPVEJgVm3Na1wDzCC9DoFZD9LDQNj71 qkbeER5gVUd4gbZDhwPDFXaQlQi21yC4EbrfB6GUJLdPG4nvg8g3Dwmdy0KvGy3JrjrNlkkGdIcf BS1LWwfiqO4DdnRKVsA0mtO28H0wTv7MQ2dRUpebFlCh7t5Z1SyRLUiPo2+AlIe4/YKlMlaY+Cm2 fx+UTUgsozS7e02G9X3QinRkidHq7h1A03fiK4WcoZTR2d29fWy7E91ufxZvkDnJXtcCp0C4nIND m8WxkqOFFea/JZ0inepsmMXS5Nfk/9jY+zKdYAiQpdkskycwgIRhCQScC+Gx0ccZKzBCwKQGmHMC udNuP9qTlQzJz1NMIKcsmTWIOAbCfys85aI5eCOI7TLZzUhznzI/WtE06S1nRcyCcnWFWkQreTph OceHCVB7qWVrsBG5gnHAKvxsb7coIZqc7N0mDALbOWSIyB5yMnORPWCWxDCikGOIAa7LEFNVTDwT SKYxqbzEWgQXJZ7o7vazO+hdfQzz5ZJmGoE4tEynuszbCv9v1RIWhEsoeVYlvE1140lD6nJsW1BB vvbeRBA28jz4ThXcg5kQ1DzkAS+mTGYR5PmQk+eQocesys5TgJS3U2ZkT86KdJZ7rFA3aOo9aGis T/9jd++3h3SaPd7nlDxN89kUmZ5DpEQ+NjyBEDMEgooFJOwEsoYpAYWYAT+uCbvCaHKVElmJpTVZ dlo1KQXYWi/8Ep10NuukAAja+IrffIE+VhA2aiTGaDxMFIFq1VfB5rZyRkkG0iTS+2qOVRYgni4g ooTEJoupx8I0BljjrqBYVdWGLA5FKaY0jlciTRYzr1yBKKpgd4/ko1NeVCKQjcyw6oVd9uMYqzS8 jidef2KU0OulTt9r0Ecqyd36CFA1Pq9WmzsD3U2alEA8iQvPCur7aq4/p7t90SJLJS7QnXLZqFHb VdwaOqSTKOluJqp6t5TUIYQU6QRMi7B8S5RCW9qBWB+cV01c1V7diIyM5dXbAhgVSYzZnCtVcsrA qEhpzOZUaRHCpCtbabdSu1nizvKi3JxDkXLBIPVrp1JSLDkAwQoKVpqyIoVW0wVTbcCWIAmCRoLe gBQpJMtglDK7okn7jGinD9m8715DOs9SLGeAuMapAnfL3C7mld808eLIuxx3Lyb0o5rNinD73dYF xBfeJTimpNzqkS1MeDFjxnus1REsXVRShm1o1feTBHjlsSmOef/o8Qqt6yX2ltxTWVhDS2aU3hhC ZIpYI49mRc0Uwj0cZ9aKjQDeN3m7IXh6yfKE+dwf5wypocQV5fwFhdgTh+yByuUyIHALfrr0QjKh ukyo2SK0pBPuvYA6vZapFn1/gCsjHjgTYC54F/CCLJ8DTWWLM5XvfcuWlWkgBjptcMv90Nyc3KwI pJzb7EbTyeeUnqtKGUpEX4RThqbxApnrB7rtW66js5FlDjzdG7mO5Y4CPfCCkW9VJYCXOAgFwJUq IRwSsgp61QUE01wWEPSRs1obXpvnurmoLATcygzwcsaSIkzLlkH4CjYsIYpisT1yLIu5zNYdwx26 I50GZjDQ6Wik+4FvLkshoDP1zsSrBsaSAZruSCUUy1jlQD3PjbZMnhsIvyyZjTF5lpQ8v8TQqkUO CFdoiKFWa6iwVahwEMpt2GCpt19QZ6bQPGF8o+UaRb3eSmEBOCMeOAk931yRWpVZa82ILotQXsi8 Swhe+wEwscwjrKPWDClp7ZYmyGGgAoAo3IiBmfQuP98ALs3e0xrdxcmZMHnn9BJmTPAFMTXliF6T c+zQGDhZXldmuIzOd0Ob8B0VCNJoDs4Uo7Ad3c6uAMWLHBhnfxKatYFPyyLDP4I7FS/OYe3b/Nnn beRFQDArqjda11nU6LG43O7vq8orNx+3e/dWFVPuMocMJG0xv+WZW35jvQT6I3pXAYL4FJLzaQAh NFoS+U0FMc1YIiJ5hVf/v9AHCyb3OWx8foM3DZMl297KfnnZuposTwtkN7egJcT8uC7gkPLrxo1g wLYmbusWtrO2PquMlwMZe22ZeBiVZrV271bpoCzRS++5aV58a5cg6xQ/XSSt/F5G5KYbiva31ByQ 4nZI0bakIM+QCCLPGluIPD1HUhoT2ozN9rh9vWGNJUQRwE1pYR9x36VH/KjwcFOAhMAR3l5vTkOw UoSgKBAShkD8JARr64FtIbw6IfLmaQq2lyetOBLNodjzVslq+aD1dHsoyUffai++yjwg5EZmj6+y GGlHsvmbtVKZRPBKwiBFAJXYfKkQ1QvzjxYjXnCtSy8oQsuzJRvEaHnioS6ecKUuJBHAMwmMgkJj vLh2hoH3u2RMhJOzDHfkfIIFhLq44bM5i9MMY/lirfJ0T9GRqsvfQXxe1qWgjSLUvP2niBHcgDQU fPP0Hy5Lv6SYfIQMxehQImSTJNV9IVbRepqm/QS2ZOpiNrIIU2548ghYzuUJ2bp2sEWInDgqs7E8 Bg18ZFX0wJLfbPqlEiVtHnwHiWq2IDZK1O0bFJ8rURucZ7P5uh4xYDQRQkt7G3kRFWVEL5jlz3Xz CtKupn/9BpbR73aqKJJnFDvD4QgiSJFQ7NiaxsNJAbJkU9wer2Mh3gB+KGP8TlTxOtVqFBBuT6ma 5pM+jzteuB9gIgCJ77IvQWFtTtpfxwSjsnBbRecVBhk8iVkZ5c/y1UMHZ+f6c9t+1fTuLHuX4Wzq JjSKX+exNKIhVdQ+IGtSBV+4GPksjvB8A+RvbODrrmk41Hb9geEPjYFmasw0PNt2zGDoeSa81Ea+ 6oJqddaprTC+fnn6JdgHhsVMXXPdINCGmh5YvuMHpmvRge1Sm3mew4JRYHi3YeeL/Dm4A5CRsM+H XWQxvWb5xdxQNbVYBE8MTTcVzVE08yGdlekZvB4HNC7YQ1Gaqh64UQD/jMV2N2YvktOU+mNMSR+K WsZhCjozdlxnNKAPWeJzGTlgIZ1H0O6zgM7i8mEwi2ORNx9FBQVAFYzQh5V8YB9ABvLAPhoH8bxp EoKLrY6hNa0om9gW+nLfGf6GRmDGA3P/gfEU/m1kCbQvFwQffGvowmroA2pbTuDbvslMy6POyPNc wzRdDSTE04e4JA02rl6ITzeG2kMejh1VYjzWdVvVHiKzD7ilqfgmZgv5/uKsedVuc2m+bHiTxrNp PaiMYpT39uz4ot4xsXtL+ods8sB8yusbFx6I2UXO8GSV/8A8AgNyBXbjIVZDg4BBKPqKsctKMLjl WCPrXkz/Wj2YgZmm/hFPpRpNEPJsK4Z+bug7mrljDf+Lm5CU26vORjN6geFKh5tSfO/FcNk5MpzD o4PBsbJ/PDhSdN0LlNHgYKhYlmXbJjAFPGdjaiF+x8Xe4elz29hmKYT4IBM7OYO0D6b/WLbLYEAz mtNppzorlc4jmE61b/At1BrjD46hjYjGcbpYqmODsj4mKg8h0hBxfJR6EGQV3U6zlbKg18Utw9yJ h7ahwfCjxv/cQtcCD7c2fdOMfryVHj7/Oc0lOv4FLVjnFm3q/IvYsM66EVub2j/Fit3G+K8yY0tJ 5pPu8IrRt9DyzopC1/XiNaVttJVUijmuFLLT6NO/FenfivT/XZFqd7HmyvEDmLvdsq5pD271yvxl t7P+YcyVAovgXS7onClcU7od7qtkJ8X5D1cRa+ztJmn1kYeU6Ehft+CxmE6THBGeHO3260HVRo/8 uykL1GeKLwL4hVWD1RqtnDXWfUROKp7qvLF6giz6+vYa+n3OEG/cgyCtI8MrNRM8cawIxPz4RfvA yl0bmc6Go8nLU3AxiIRSRNMsZvyspnTb4kQ98r5nH/iZrD5nCua9h+KGvC5Wjzd8HlhRat17yarz N00Z9MtBgocpYdkA6ll195Xwqg2kPs2i7t7+2bOvnDHLp4WS5dGcerD45/hIeKGInInGdfjtU5K7 mVQYMzYek6h30E/T9BJrn3jobFkJhVUswAm1zrmtbP9j4cJPWZH873//T4lfEaBpkwb2sAJF8DzB Fh4nQKnDk0T3OITGv16ZgmPEnSXpAetrIN2RKF/yWpyf/iCxINvEger8z2GaXfNDoQQcdHb9mEBs YFXHL3rkWeKpBM86vcQuBRZK8dSBL5fk7lQ5s9qHbZ0lzJalzOqcYcN1VgJXXEYCsO2JX/yw5HJr Fusnq4WKKmKP464j1p84FHPnF4qrpkhgU/ICFfHVqxVbJJjziRNTdxJTfbNS03Ab/qobqIS4+eZ0 LBYLNaAec0EpPkVM3a+797S6+y7k4GYYBEsJJwdL4VnxhFvaMbcIE3BgxsgZWNqIP5f55ZgmrLyY TS4meQZqeRv9NeDu3im/w2No35L+AiaQxbNCFd9Pcfp13bAtS3NszdIse6BZw4E56IqPvbKZCzYi 5M56I8ECDoLE03x4/9M353gWod9kRVmvfvhx3TFX9DR9wY3Ut58k6NaDsKtbyELPVyKWr/kk9gY/ hmWWMRyZ1PXoIDCCoRMYrm1rBmVDI9BHrnPbx7A1ZvH1OP8u9QOdU9GKZ+qfcyueBNFExS2Eop7v mLzD6v2FKKC/fyx39FmGdj3xwKLzjrQUGysQ+1146JdYt1edqG2GzvIcK8tgnskSx59/Pe50/mMb O0TgQh41TxCAzkD2JtHNNIVW6ete6Qtj6WPb9qQIgWyP4I4J4OCXv/+dvANKCGltowCn98XXdrhh 8npf0YeONnBGio4bJht6H6VTCBx/hQgdB1Qe8Ja++5igchXNoTMuzB399hMvTKV+/FOHDZ0PeSL6 hmJXu7eF7ORfy2/1tuZ4XJzDMASiTvW9xAoU6vvPJkkK6c1LFuA0RA6DGyA4kzWsa/2laX+q8xYe EMGDAExsPeU1ltVxfEPrDAQQv6kXHaoZdHA5t4NZwjeXth+RP/mkcIEnFJbXT70Z7uuqYg/5OOYn Nre3hDRsAY0TqqKkQN+tFVnZ4i9pcZ148BZZ/5gDh0ZQVWja3hIWcYuMJUyQc4ktSLDSZeqlMXlC tmrTWRTxFtkRz8IVbD0iP5GtypwqzeEy4RgoaPfW42ZKhTyjCSur6RQH1+d0gnK3nNg77f1jUoDW ol79Cgmbiqed8vKAQUjItie0RwrO6L8ebaNitXWIG69P6BEh1M/TOIZVnV9EPpDW/fW1MzgxT8+P D35+cXZ4+vSZ9fZkcNx9vOybRVdV36OjZ788O31+evzm6OD8xcnv9rOfX5sG79usJ6kWFOeexn6a YOUbBi+ixE8XqnjGEa0G6LAUCCEP5OKiIgA7VDUXwVfBWC+/XVi61ZQfSQNC/J8PQAK2K6fYvVsE HoEMNO6zUAUt4mPnHVJ7KSq318gAt4pmoLKhsMJcIPnZZJjDltyvkuO1tZJBccHl1P9Euv0Pfb4L D7AzkLS64/b2J4QMjTfILZrNZBbH71Ha4KmyJ/eXUEk8H6k0Q79xGEaxvw196olFwXaz9I/+bG63 H/31Fxff7Ue851J+//Y3HMaNw24fv2LiZ+n5fxrT+T8T/YhcRkYAAA== headers: Server: [nginx] Content-Type: [text/html] Vary: [Accept-Encoding] Cache-Control: [no-cache] must-revalidate: ['s-maxage=3600'] Expires: ['Fri 15 Oct 2004 12:00:00 GMT'] Server-Name: ['dalmozwww01.dal.moz.com'] Content-Encoding: [gzip] Content-Length: ['5683'] Accept-Ranges: [bytes] Date: ['Sat, 11 Jan 2014 18:45:11 GMT'] X-Varnish: [918768771 918700396] Age: ['3479'] Via: ['1.1 varnish'] Connection: [keep-alive] status: {code: 200, message: OK} vcrpy-6.0.1/tests/integration/000077500000000000000000000000001455450430400163525ustar00rootroot00000000000000vcrpy-6.0.1/tests/integration/__init__.py000066400000000000000000000000001455450430400204510ustar00rootroot00000000000000vcrpy-6.0.1/tests/integration/aiohttp_utils.py000066400000000000000000000024031455450430400216130ustar00rootroot00000000000000# flake8: noqa import asyncio import aiohttp async def aiohttp_request(loop, method, url, output="text", encoding="utf-8", content_type=None, **kwargs): async with aiohttp.ClientSession(loop=loop) as session: response_ctx = session.request(method, url, **kwargs) response = await response_ctx.__aenter__() if output == "text": content = await response.text() elif output == "json": content_type = content_type or "application/json" content = await response.json(encoding=encoding, content_type=content_type) elif output == "raw": content = await response.read() elif output == "stream": content = await response.content.read() response_ctx._resp.close() await session.close() return response, content def aiohttp_app(): async def hello(request): return aiohttp.web.Response(text="hello") async def json(request): return aiohttp.web.json_response({}) async def json_empty_body(request): return aiohttp.web.json_response() app = aiohttp.web.Application() app.router.add_get("/", hello) app.router.add_get("/json", json) app.router.add_get("/json/empty", json_empty_body) return app vcrpy-6.0.1/tests/integration/cassettes/000077500000000000000000000000001455450430400203505ustar00rootroot00000000000000vcrpy-6.0.1/tests/integration/cassettes/gzip_httpx_old_format.yaml000066400000000000000000000021121455450430400256360ustar00rootroot00000000000000interactions: - request: body: '' headers: accept: - '*/*' accept-encoding: - gzip, deflate, br connection: - keep-alive host: - httpbin.org user-agent: - python-httpx/0.23.0 method: GET uri: https://httpbin.org/gzip response: content: "{\n \"gzipped\": true, \n \"headers\": {\n \"Accept\": \"*/*\", \n \"Accept-Encoding\": \"gzip, deflate, br\", \n \"Host\": \"httpbin.org\", \n \"User-Agent\": \"python-httpx/0.23.0\", \n \"X-Amzn-Trace-Id\": \"Root=1-62a62a8d-5f39b5c50c744da821d6ea99\"\n \ }, \n \"method\": \"GET\", \n \"origin\": \"146.200.25.115\"\n}\n" headers: Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Origin: - '*' Connection: - keep-alive Content-Encoding: - gzip Content-Length: - '230' Content-Type: - application/json Date: - Sun, 12 Jun 2022 18:03:57 GMT Server: - gunicorn/19.9.0 http_version: HTTP/1.1 status_code: 200 version: 1 vcrpy-6.0.1/tests/integration/cassettes/gzip_requests.yaml000066400000000000000000000017631455450430400241470ustar00rootroot00000000000000interactions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate, br Connection: - keep-alive User-Agent: - python-requests/2.28.0 method: GET uri: https://httpbin.org/gzip response: body: string: !!binary | H4sIAKwrpmIA/z2OSwrCMBCG956izLIkfQSxkl2RogfQA9R2bIM1iUkqaOndnYDIrGa+/zELDB9l LfYgg5uRwYhtj86DXKDuOrQBJKR5Cuy38kZ3pld6oHu0sqTH29QGZMnVkepgtMYuKKNJcEe0vJ3U C4mcjI9hpaiygqaUW7ETFYGLR8frAXXE9h1Go7nD54w++FxkYp8VsDJ4IBH6E47NmVzGqUHFkn8g rJsvp2omYs8AAAA= headers: Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Origin: - '*' Connection: - Close Content-Encoding: - gzip Content-Length: - '182' Content-Type: - application/json Date: - Sun, 12 Jun 2022 18:08:44 GMT Server: - Pytest-HTTPBIN/0.1.0 status: code: 200 message: great version: 1 vcrpy-6.0.1/tests/integration/cassettes/test_httpx_test_test_behind_proxy.yml000066400000000000000000000017711455450430400301570ustar00rootroot00000000000000interactions: - request: body: '' headers: accept: - '*/*' accept-encoding: - gzip, deflate, br connection: - keep-alive host: - httpbin.org user-agent: - python-httpx/0.12.1 method: GET uri: https://mockbin.org/headers response: content: "{\n \"headers\": {\n \"Accept\": \"*/*\", \n \"Accept-Encoding\"\ : \"gzip, deflate, br\", \n \"Host\": \"httpbin.org\", \n \"User-Agent\"\ : \"python-httpx/0.12.1\", \n \"X-Amzn-Trace-Id\": \"Root=1-5ea778c9-ea76170da792abdbf7614067\"\ \n }\n}\n" headers: access-control-allow-credentials: - 'true' access-control-allow-origin: - '*' connection: - keep-alive content-length: - '226' content-type: - application/json date: - Tue, 28 Apr 2020 00:28:57 GMT server: - gunicorn/19.9.0 via: - my_own_proxy http_version: HTTP/1.1 status_code: 200 version: 1 vcrpy-6.0.1/tests/integration/conftest.py000066400000000000000000000007371455450430400205600ustar00rootroot00000000000000import os import ssl import pytest @pytest.fixture def httpbin_ssl_context(): ssl_ca_location = os.environ["REQUESTS_CA_BUNDLE"] ssl_cert_location = os.environ["REQUESTS_CA_BUNDLE"].replace("cacert.pem", "cert.pem") ssl_key_location = os.environ["REQUESTS_CA_BUNDLE"].replace("cacert.pem", "key.pem") ssl_context = ssl.create_default_context(cafile=ssl_ca_location) ssl_context.load_cert_chain(ssl_cert_location, ssl_key_location) return ssl_context vcrpy-6.0.1/tests/integration/test_aiohttp.py000066400000000000000000000416201455450430400214360ustar00rootroot00000000000000import logging import urllib.parse import pytest import vcr asyncio = pytest.importorskip("asyncio") aiohttp = pytest.importorskip("aiohttp") from .aiohttp_utils import aiohttp_app, aiohttp_request # noqa: E402 def run_in_loop(fn): async def wrapper(): return await fn(asyncio.get_running_loop()) return asyncio.run(wrapper()) def request(method, url, output="text", **kwargs): def run(loop): return aiohttp_request(loop, method, url, output=output, **kwargs) return run_in_loop(run) def get(url, output="text", **kwargs): return request("GET", url, output=output, **kwargs) def post(url, output="text", **kwargs): return request("POST", url, output="text", **kwargs) @pytest.mark.online def test_status(tmpdir, httpbin): url = httpbin.url with vcr.use_cassette(str(tmpdir.join("status.yaml"))): response, _ = get(url) with vcr.use_cassette(str(tmpdir.join("status.yaml"))) as cassette: cassette_response, _ = get(url) assert cassette_response.status == response.status assert cassette.play_count == 1 @pytest.mark.online @pytest.mark.parametrize("auth", [None, aiohttp.BasicAuth("vcrpy", "test")]) def test_headers(tmpdir, auth, httpbin): url = httpbin.url with vcr.use_cassette(str(tmpdir.join("headers.yaml"))): response, _ = get(url, auth=auth) with vcr.use_cassette(str(tmpdir.join("headers.yaml"))) as cassette: if auth is not None: request = cassette.requests[0] assert "AUTHORIZATION" in request.headers cassette_response, _ = get(url, auth=auth) assert cassette_response.headers.items() == response.headers.items() assert cassette.play_count == 1 assert "istr" not in cassette.data[0] assert "yarl.URL" not in cassette.data[0] @pytest.mark.online def test_case_insensitive_headers(tmpdir, httpbin): url = httpbin.url with vcr.use_cassette(str(tmpdir.join("whatever.yaml"))): _, _ = get(url) with vcr.use_cassette(str(tmpdir.join("whatever.yaml"))) as cassette: cassette_response, _ = get(url) assert "Content-Type" in cassette_response.headers assert "content-type" in cassette_response.headers assert cassette.play_count == 1 @pytest.mark.online def test_text(tmpdir, httpbin): url = httpbin.url with vcr.use_cassette(str(tmpdir.join("text.yaml"))): _, response_text = get(url) with vcr.use_cassette(str(tmpdir.join("text.yaml"))) as cassette: _, cassette_response_text = get(url) assert cassette_response_text == response_text assert cassette.play_count == 1 @pytest.mark.online def test_json(tmpdir, httpbin): url = httpbin.url + "/json" headers = {"Content-Type": "application/json"} with vcr.use_cassette(str(tmpdir.join("json.yaml"))): _, response_json = get(url, output="json", headers=headers) with vcr.use_cassette(str(tmpdir.join("json.yaml"))) as cassette: _, cassette_response_json = get(url, output="json", headers=headers) assert cassette_response_json == response_json assert cassette.play_count == 1 @pytest.mark.online def test_binary(tmpdir, httpbin): url = httpbin.url + "/image/png" with vcr.use_cassette(str(tmpdir.join("binary.yaml"))): _, response_binary = get(url, output="raw") with vcr.use_cassette(str(tmpdir.join("binary.yaml"))) as cassette: _, cassette_response_binary = get(url, output="raw") assert cassette_response_binary == response_binary assert cassette.play_count == 1 @pytest.mark.online def test_stream(tmpdir, httpbin): url = httpbin.url with vcr.use_cassette(str(tmpdir.join("stream.yaml"))): _, body = get(url, output="raw") # Do not use stream here, as the stream is exhausted by vcr with vcr.use_cassette(str(tmpdir.join("stream.yaml"))) as cassette: _, cassette_body = get(url, output="stream") assert cassette_body == body assert cassette.play_count == 1 @pytest.mark.online @pytest.mark.parametrize("body", ["data", "json"]) def test_post(tmpdir, body, caplog, httpbin): caplog.set_level(logging.INFO) data = {"key1": "value1", "key2": "value2"} url = httpbin.url with vcr.use_cassette(str(tmpdir.join("post.yaml"))): _, response_json = post(url, **{body: data}) with vcr.use_cassette(str(tmpdir.join("post.yaml"))) as cassette: request = cassette.requests[0] assert request.body == data _, cassette_response_json = post(url, **{body: data}) assert cassette_response_json == response_json assert cassette.play_count == 1 assert next( ( log for log in caplog.records if log.getMessage() == f" not in cassette, sending to real server" ), None, ), "Log message not found." @pytest.mark.online def test_params(tmpdir, httpbin): url = httpbin.url + "/get?d=d" headers = {"Content-Type": "application/json"} params = {"a": 1, "b": 2, "c": "c"} with vcr.use_cassette(str(tmpdir.join("get.yaml"))) as cassette: _, response_json = get(url, output="json", params=params, headers=headers) assert response_json["args"] == {"a": "1", "b": "2", "c": "c", "d": "d"} with vcr.use_cassette(str(tmpdir.join("get.yaml"))) as cassette: _, cassette_response_json = get(url, output="json", params=params, headers=headers) assert cassette_response_json == response_json assert cassette.play_count == 1 @pytest.mark.online def test_params_same_url_distinct_params(tmpdir, httpbin): url = httpbin.url + "/json" headers = {"Content-Type": "application/json"} params = {"a": 1, "b": 2, "c": "c"} with vcr.use_cassette(str(tmpdir.join("get.yaml"))) as cassette: _, response_json = get(url, output="json", params=params, headers=headers) with vcr.use_cassette(str(tmpdir.join("get.yaml"))) as cassette: _, cassette_response_json = get(url, output="json", params=params, headers=headers) assert cassette_response_json == response_json assert cassette.play_count == 1 other_params = {"other": "params"} with vcr.use_cassette(str(tmpdir.join("get.yaml"))) as cassette: with pytest.raises(vcr.errors.CannotOverwriteExistingCassetteException): get(url, output="text", params=other_params) @pytest.mark.online def test_params_on_url(tmpdir, httpbin): url = httpbin.url + "/get?a=1&b=foo" headers = {"Content-Type": "application/json"} with vcr.use_cassette(str(tmpdir.join("get.yaml"))) as cassette: _, response_json = get(url, output="json", headers=headers) request = cassette.requests[0] assert request.url == url with vcr.use_cassette(str(tmpdir.join("get.yaml"))) as cassette: _, cassette_response_json = get(url, output="json", headers=headers) request = cassette.requests[0] assert request.url == url assert cassette_response_json == response_json assert cassette.play_count == 1 def test_aiohttp_test_client(aiohttp_client, tmpdir): loop = asyncio.get_event_loop() app = aiohttp_app() url = "/" client = loop.run_until_complete(aiohttp_client(app)) with vcr.use_cassette(str(tmpdir.join("get.yaml"))): response = loop.run_until_complete(client.get(url)) assert response.status == 200 response_text = loop.run_until_complete(response.text()) assert response_text == "hello" response_text = loop.run_until_complete(response.text(errors="replace")) assert response_text == "hello" with vcr.use_cassette(str(tmpdir.join("get.yaml"))) as cassette: response = loop.run_until_complete(client.get(url)) request = cassette.requests[0] assert request.url == str(client.make_url(url)) response_text = loop.run_until_complete(response.text()) assert response_text == "hello" assert cassette.play_count == 1 def test_aiohttp_test_client_json(aiohttp_client, tmpdir): loop = asyncio.get_event_loop() app = aiohttp_app() url = "/json/empty" client = loop.run_until_complete(aiohttp_client(app)) with vcr.use_cassette(str(tmpdir.join("get.yaml"))): response = loop.run_until_complete(client.get(url)) assert response.status == 200 response_json = loop.run_until_complete(response.json()) assert response_json is None with vcr.use_cassette(str(tmpdir.join("get.yaml"))) as cassette: response = loop.run_until_complete(client.get(url)) request = cassette.requests[0] assert request.url == str(client.make_url(url)) response_json = loop.run_until_complete(response.json()) assert response_json is None assert cassette.play_count == 1 def test_cleanup_from_pytest_asyncio(): # work around https://github.com/pytest-dev/pytest-asyncio/issues/724 asyncio.get_event_loop().close() asyncio.set_event_loop(None) @pytest.mark.online def test_redirect(tmpdir, httpbin): url = httpbin.url + "/redirect/2" with vcr.use_cassette(str(tmpdir.join("redirect.yaml"))): response, _ = get(url) with vcr.use_cassette(str(tmpdir.join("redirect.yaml"))) as cassette: cassette_response, _ = get(url) assert cassette_response.status == response.status assert len(cassette_response.history) == len(response.history) assert len(cassette) == 3 assert cassette.play_count == 3 # Assert that the real response and the cassette response have a similar # looking request_info. assert cassette_response.request_info.url == response.request_info.url assert cassette_response.request_info.method == response.request_info.method assert cassette_response.request_info.headers.items() == response.request_info.headers.items() assert cassette_response.request_info.real_url == response.request_info.real_url @pytest.mark.online def test_not_modified(tmpdir, httpbin): """It doesn't try to redirect on 304""" url = httpbin.url + "/status/304" with vcr.use_cassette(str(tmpdir.join("not_modified.yaml"))): response, _ = get(url) with vcr.use_cassette(str(tmpdir.join("not_modified.yaml"))) as cassette: cassette_response, _ = get(url) assert cassette_response.status == 304 assert response.status == 304 assert len(cassette_response.history) == len(response.history) assert len(cassette) == 1 assert cassette.play_count == 1 @pytest.mark.online def test_double_requests(tmpdir, httpbin): """We should capture, record, and replay all requests and response chains, even if there are duplicate ones. We should replay in the order we saw them. """ url = httpbin.url with vcr.use_cassette(str(tmpdir.join("text.yaml"))): _, response_text1 = get(url, output="text") _, response_text2 = get(url, output="text") with vcr.use_cassette(str(tmpdir.join("text.yaml"))) as cassette: resp, cassette_response_text = get(url, output="text") assert resp.status == 200 assert cassette_response_text == response_text1 # We made only one request, so we should only play 1 recording. assert cassette.play_count == 1 # Now make the second test to url resp, cassette_response_text = get(url, output="text") assert resp.status == 200 assert cassette_response_text == response_text2 # Now that we made both requests, we should have played both. assert cassette.play_count == 2 def test_cookies(httpbin_both, httpbin_ssl_context, tmpdir): async def run(loop): cookies_url = httpbin_both.url + ( "/response-headers?" "set-cookie=" + urllib.parse.quote("cookie_1=val_1; Path=/") + "&" "Set-Cookie=" + urllib.parse.quote("Cookie_2=Val_2; Path=/") ) home_url = httpbin_both.url + "/" tmp = str(tmpdir.join("cookies.yaml")) req_cookies = {"Cookie_3": "Val_3"} req_headers = {"Cookie": "Cookie_4=Val_4"} # ------------------------- Record -------------------------- # with vcr.use_cassette(tmp) as cassette: async with aiohttp.ClientSession(loop=loop, cookie_jar=aiohttp.CookieJar(unsafe=True)) as session: cookies_resp = await session.get(cookies_url, ssl=httpbin_ssl_context) home_resp = await session.get( home_url, cookies=req_cookies, headers=req_headers, ssl=httpbin_ssl_context, ) assert cassette.play_count == 0 assert_responses(cookies_resp, home_resp) # -------------------------- Play --------------------------- # with vcr.use_cassette(tmp, record_mode=vcr.mode.NONE) as cassette: async with aiohttp.ClientSession(loop=loop, cookie_jar=aiohttp.CookieJar(unsafe=True)) as session: cookies_resp = await session.get(cookies_url, ssl=httpbin_ssl_context) home_resp = await session.get( home_url, cookies=req_cookies, headers=req_headers, ssl=httpbin_ssl_context, ) assert cassette.play_count == 2 assert_responses(cookies_resp, home_resp) def assert_responses(cookies_resp, home_resp): assert cookies_resp.cookies.get("cookie_1").value == "val_1" assert cookies_resp.cookies.get("Cookie_2").value == "Val_2" request_cookies = home_resp.request_info.headers["cookie"] assert "cookie_1=val_1" in request_cookies assert "Cookie_2=Val_2" in request_cookies assert "Cookie_3=Val_3" in request_cookies assert "Cookie_4=Val_4" in request_cookies run_in_loop(run) def test_cookies_redirect(httpbin_both, httpbin_ssl_context, tmpdir): async def run(loop): # Sets cookie as provided by the query string and redirects cookies_url = httpbin_both.url + "/cookies/set?Cookie_1=Val_1" tmp = str(tmpdir.join("cookies.yaml")) # ------------------------- Record -------------------------- # with vcr.use_cassette(tmp) as cassette: async with aiohttp.ClientSession(loop=loop, cookie_jar=aiohttp.CookieJar(unsafe=True)) as session: cookies_resp = await session.get(cookies_url, ssl=httpbin_ssl_context) assert not cookies_resp.cookies cookies = session.cookie_jar.filter_cookies(cookies_url) assert cookies["Cookie_1"].value == "Val_1" assert cassette.play_count == 0 assert cassette.requests[1].headers["Cookie"] == "Cookie_1=Val_1" # -------------------------- Play --------------------------- # with vcr.use_cassette(tmp, record_mode=vcr.mode.NONE) as cassette: async with aiohttp.ClientSession(loop=loop, cookie_jar=aiohttp.CookieJar(unsafe=True)) as session: cookies_resp = await session.get(cookies_url, ssl=httpbin_ssl_context) assert not cookies_resp.cookies cookies = session.cookie_jar.filter_cookies(cookies_url) assert cookies["Cookie_1"].value == "Val_1" assert cassette.play_count == 2 assert cassette.requests[1].headers["Cookie"] == "Cookie_1=Val_1" # Assert that it's ignoring expiration date with vcr.use_cassette(tmp, record_mode=vcr.mode.NONE) as cassette: cassette.responses[0]["headers"]["set-cookie"] = [ "Cookie_1=Val_1; Expires=Wed, 21 Oct 2015 07:28:00 GMT", ] async with aiohttp.ClientSession(loop=loop, cookie_jar=aiohttp.CookieJar(unsafe=True)) as session: cookies_resp = await session.get(cookies_url, ssl=httpbin_ssl_context) assert not cookies_resp.cookies cookies = session.cookie_jar.filter_cookies(cookies_url) assert cookies["Cookie_1"].value == "Val_1" run_in_loop(run) @pytest.mark.online def test_not_allow_redirects(tmpdir, httpbin): url = httpbin + "/redirect-to?url=.%2F&status_code=308" path = str(tmpdir.join("redirects.yaml")) with vcr.use_cassette(path): response, _ = get(url, allow_redirects=False) assert response.url.path == "/redirect-to" assert response.status == 308 with vcr.use_cassette(path) as cassette: response, _ = get(url, allow_redirects=False) assert response.url.path == "/redirect-to" assert response.status == 308 assert cassette.play_count == 1 def test_filter_query_parameters(tmpdir, httpbin): url = httpbin + "?password=secret" path = str(tmpdir.join("query_param_filter.yaml")) with vcr.use_cassette(path, filter_query_parameters=["password"]) as cassette: get(url) assert "password" not in cassette.requests[0].url assert "secret" not in cassette.requests[0].url with open(path) as f: cassette_content = f.read() assert "password" not in cassette_content assert "secret" not in cassette_content vcrpy-6.0.1/tests/integration/test_basic.py000066400000000000000000000053201455450430400210440ustar00rootroot00000000000000"""Basic tests for cassettes""" # External imports import os from urllib.request import urlopen # Internal imports import vcr def test_nonexistent_directory(tmpdir, httpbin): """If we load a cassette in a nonexistent directory, it can save ok""" # Check to make sure directory doesn't exist assert not os.path.exists(str(tmpdir.join("nonexistent"))) # Run VCR to create dir and cassette file with vcr.use_cassette(str(tmpdir.join("nonexistent", "cassette.yml"))): urlopen(httpbin.url).read() # This should have made the file and the directory assert os.path.exists(str(tmpdir.join("nonexistent", "cassette.yml"))) def test_unpatch(tmpdir, httpbin): """Ensure that our cassette gets unpatched when we're done""" with vcr.use_cassette(str(tmpdir.join("unpatch.yaml"))) as cass: urlopen(httpbin.url).read() # Make the same request, and assert that we haven't served any more # requests out of cache urlopen(httpbin.url).read() assert cass.play_count == 0 def test_basic_json_use(tmpdir, httpbin): """ Ensure you can load a json serialized cassette """ test_fixture = str(tmpdir.join("synopsis.json")) with vcr.use_cassette(test_fixture, serializer="json"): response = urlopen(httpbin.url).read() assert b"A simple HTTP Request & Response Service." in response def test_patched_content(tmpdir, httpbin): """ Ensure that what you pull from a cassette is what came from the request """ with vcr.use_cassette(str(tmpdir.join("synopsis.yaml"))) as cass: response = urlopen(httpbin.url).read() assert cass.play_count == 0 with vcr.use_cassette(str(tmpdir.join("synopsis.yaml"))) as cass: response2 = urlopen(httpbin.url).read() assert cass.play_count == 1 cass._save(force=True) with vcr.use_cassette(str(tmpdir.join("synopsis.yaml"))) as cass: response3 = urlopen(httpbin.url).read() assert cass.play_count == 1 assert response == response2 assert response2 == response3 def test_patched_content_json(tmpdir, httpbin): """ Ensure that what you pull from a json cassette is what came from the request """ testfile = str(tmpdir.join("synopsis.json")) with vcr.use_cassette(testfile) as cass: response = urlopen(httpbin.url).read() assert cass.play_count == 0 with vcr.use_cassette(testfile) as cass: response2 = urlopen(httpbin.url).read() assert cass.play_count == 1 cass._save(force=True) with vcr.use_cassette(testfile) as cass: response3 = urlopen(httpbin.url).read() assert cass.play_count == 1 assert response == response2 assert response2 == response3 vcrpy-6.0.1/tests/integration/test_boto3.py000066400000000000000000000067121455450430400210170ustar00rootroot00000000000000import os import pytest import vcr boto3 = pytest.importorskip("boto3") import botocore # noqa try: from botocore import awsrequest # noqa botocore_awsrequest = True except ImportError: botocore_awsrequest = False # skip tests if boto does not use vendored requests anymore # https://github.com/boto/botocore/pull/1495 boto3_skip_vendored_requests = pytest.mark.skipif( botocore_awsrequest, reason=f"botocore version {botocore.__version__} does not use vendored requests anymore.", ) boto3_skip_awsrequest = pytest.mark.skipif( not botocore_awsrequest, reason=f"botocore version {botocore.__version__} still uses vendored requests.", ) IAM_USER_NAME = "vcrpy" @pytest.fixture def iam_client(): def _iam_client(boto3_session=None): if boto3_session is None: boto3_session = boto3.Session( aws_access_key_id=os.environ.get("AWS_ACCESS_KEY_ID", "default"), aws_secret_access_key=os.environ.get("AWS_SECRET_ACCESS_KEY", "default"), aws_session_token=None, region_name=os.environ.get("AWS_DEFAULT_REGION", "default"), ) return boto3_session.client("iam") return _iam_client @pytest.fixture def get_user(iam_client): def _get_user(client=None, user_name=IAM_USER_NAME): if client is None: # Default client set with fixture `iam_client` client = iam_client() return client.get_user(UserName=user_name) return _get_user @pytest.mark.skipif( os.environ.get("TRAVIS_PULL_REQUEST") != "false", reason="Encrypted Environment Variables from Travis Repository Settings" " are disabled on PRs from forks. " "https://docs.travis-ci.com/user/pull-requests/#pull-requests-and-security-restrictions", ) def test_boto_medium_difficulty(tmpdir, get_user): with vcr.use_cassette(str(tmpdir.join("boto3-medium.yml"))): response = get_user() assert response["User"]["UserName"] == IAM_USER_NAME with vcr.use_cassette(str(tmpdir.join("boto3-medium.yml"))) as cass: response = get_user() assert response["User"]["UserName"] == IAM_USER_NAME assert cass.all_played @pytest.mark.skipif( os.environ.get("TRAVIS_PULL_REQUEST") != "false", reason="Encrypted Environment Variables from Travis Repository Settings" " are disabled on PRs from forks. " "https://docs.travis-ci.com/user/pull-requests/#pull-requests-and-security-restrictions", ) def test_boto_hardcore_mode(tmpdir, iam_client, get_user): with vcr.use_cassette(str(tmpdir.join("boto3-hardcore.yml"))): ses = boto3.Session( aws_access_key_id=os.environ.get("AWS_ACCESS_KEY_ID"), aws_secret_access_key=os.environ.get("AWS_SECRET_ACCESS_KEY"), region_name=os.environ.get("AWS_DEFAULT_REGION"), ) client = iam_client(ses) response = get_user(client=client) assert response["User"]["UserName"] == IAM_USER_NAME with vcr.use_cassette(str(tmpdir.join("boto3-hardcore.yml"))) as cass: ses = boto3.Session( aws_access_key_id=os.environ.get("AWS_ACCESS_KEY_ID"), aws_secret_access_key=os.environ.get("AWS_SECRET_ACCESS_KEY"), aws_session_token=None, region_name=os.environ.get("AWS_DEFAULT_REGION"), ) client = iam_client(ses) response = get_user(client=client) assert response["User"]["UserName"] == IAM_USER_NAME assert cass.all_played vcrpy-6.0.1/tests/integration/test_config.py000066400000000000000000000047161455450430400212400ustar00rootroot00000000000000import json import os from urllib.request import urlopen import pytest import vcr @pytest.mark.online def test_set_serializer_default_config(tmpdir, httpbin): my_vcr = vcr.VCR(serializer="json") with my_vcr.use_cassette(str(tmpdir.join("test.json"))): assert my_vcr.serializer == "json" urlopen(httpbin.url) with open(str(tmpdir.join("test.json"))) as f: file_content = f.read() assert file_content.endswith("\n") assert json.loads(file_content) @pytest.mark.online def test_default_set_cassette_library_dir(tmpdir, httpbin): my_vcr = vcr.VCR(cassette_library_dir=str(tmpdir.join("subdir"))) with my_vcr.use_cassette("test.json"): urlopen(httpbin.url) assert os.path.exists(str(tmpdir.join("subdir").join("test.json"))) @pytest.mark.online def test_override_set_cassette_library_dir(tmpdir, httpbin): my_vcr = vcr.VCR(cassette_library_dir=str(tmpdir.join("subdir"))) cld = str(tmpdir.join("subdir2")) with my_vcr.use_cassette("test.json", cassette_library_dir=cld): urlopen(httpbin.url) assert os.path.exists(str(tmpdir.join("subdir2").join("test.json"))) assert not os.path.exists(str(tmpdir.join("subdir").join("test.json"))) @pytest.mark.online def test_override_match_on(tmpdir, httpbin): my_vcr = vcr.VCR(match_on=["method"]) with my_vcr.use_cassette(str(tmpdir.join("test.json"))): urlopen(httpbin.url) with my_vcr.use_cassette(str(tmpdir.join("test.json"))) as cass: urlopen(httpbin.url) assert len(cass) == 1 assert cass.play_count == 1 def test_missing_matcher(): my_vcr = vcr.VCR() my_vcr.register_matcher("awesome", object) with pytest.raises(KeyError): with my_vcr.use_cassette("test.yaml", match_on=["notawesome"]): pass @pytest.mark.online def test_dont_record_on_exception(tmpdir, httpbin): my_vcr = vcr.VCR(record_on_exception=False) @my_vcr.use_cassette(str(tmpdir.join("dontsave.yml"))) def some_test(): assert b"Not in content" in urlopen(httpbin.url) with pytest.raises(AssertionError): some_test() assert not os.path.exists(str(tmpdir.join("dontsave.yml"))) # Make sure context decorator has the same behavior with pytest.raises(AssertionError): with my_vcr.use_cassette(str(tmpdir.join("dontsave2.yml"))): assert b"Not in content" in urlopen(httpbin.url).read() assert not os.path.exists(str(tmpdir.join("dontsave2.yml"))) vcrpy-6.0.1/tests/integration/test_disksaver.py000066400000000000000000000027721455450430400217660ustar00rootroot00000000000000"""Basic tests about save behavior""" # External imports import os import time from urllib.request import urlopen import pytest # Internal imports import vcr @pytest.mark.online def test_disk_saver_nowrite(tmpdir, httpbin): """ Ensure that when you close a cassette without changing it it doesn't rewrite the file """ fname = str(tmpdir.join("synopsis.yaml")) with vcr.use_cassette(fname) as cass: urlopen(httpbin.url).read() assert cass.play_count == 0 last_mod = os.path.getmtime(fname) with vcr.use_cassette(fname) as cass: urlopen(httpbin.url).read() assert cass.play_count == 1 assert cass.dirty is False last_mod2 = os.path.getmtime(fname) assert last_mod == last_mod2 @pytest.mark.online def test_disk_saver_write(tmpdir, httpbin): """ Ensure that when you close a cassette after changing it it does rewrite the file """ fname = str(tmpdir.join("synopsis.yaml")) with vcr.use_cassette(fname) as cass: urlopen(httpbin.url).read() assert cass.play_count == 0 last_mod = os.path.getmtime(fname) # Make sure at least 1 second passes, otherwise sometimes # the mtime doesn't change time.sleep(1) with vcr.use_cassette(fname, record_mode=vcr.mode.ANY) as cass: urlopen(httpbin.url).read() urlopen(httpbin.url + "/get").read() assert cass.play_count == 1 assert cass.dirty last_mod2 = os.path.getmtime(fname) assert last_mod != last_mod2 vcrpy-6.0.1/tests/integration/test_filter.py000066400000000000000000000150151455450430400212520ustar00rootroot00000000000000import base64 import json from urllib.error import HTTPError from urllib.parse import urlencode from urllib.request import Request, urlopen import pytest import vcr from ..assertions import assert_cassette_has_one_response, assert_is_json_bytes def _request_with_auth(url, username, password): request = Request(url) base64string = base64.b64encode(username.encode("ascii") + b":" + password.encode("ascii")) request.add_header(b"Authorization", b"Basic " + base64string) return urlopen(request) def _find_header(cassette, header): return any(header in request.headers for request in cassette.requests) def test_filter_basic_auth(tmpdir, httpbin): url = httpbin.url + "/basic-auth/user/passwd" cass_file = str(tmpdir.join("basic_auth_filter.yaml")) my_vcr = vcr.VCR(match_on=["uri", "method", "headers"]) # 2 requests, one with auth failure and one with auth success with my_vcr.use_cassette(cass_file, filter_headers=["authorization"]): with pytest.raises(HTTPError): resp = _request_with_auth(url, "user", "wrongpasswd") assert resp.getcode() == 401 resp = _request_with_auth(url, "user", "passwd") assert resp.getcode() == 200 # make same 2 requests, this time both served from cassette. with my_vcr.use_cassette(cass_file, filter_headers=["authorization"]) as cass: with pytest.raises(HTTPError): resp = _request_with_auth(url, "user", "wrongpasswd") assert resp.getcode() == 401 resp = _request_with_auth(url, "user", "passwd") assert resp.getcode() == 200 # authorization header should not have been recorded assert not _find_header(cass, "authorization") assert len(cass) == 2 def test_filter_querystring(tmpdir, httpbin): url = httpbin.url + "/?password=secret" cass_file = str(tmpdir.join("filter_qs.yaml")) with vcr.use_cassette(cass_file, filter_query_parameters=["password"]): urlopen(url) with vcr.use_cassette(cass_file, filter_query_parameters=["password"]) as cass: urlopen(url) assert "password" not in cass.requests[0].url assert "secret" not in cass.requests[0].url with open(cass_file) as f: cassette_content = f.read() assert "password" not in cassette_content assert "secret" not in cassette_content def test_filter_post_data(tmpdir, httpbin): url = httpbin.url + "/post" data = urlencode({"id": "secret", "foo": "bar"}).encode("utf-8") cass_file = str(tmpdir.join("filter_pd.yaml")) with vcr.use_cassette(cass_file, filter_post_data_parameters=["id"]): urlopen(url, data) with vcr.use_cassette(cass_file, filter_post_data_parameters=["id"]) as cass: assert b"id=secret" not in cass.requests[0].body def test_filter_json_post_data(tmpdir, httpbin): data = json.dumps({"id": "secret", "foo": "bar"}).encode("utf-8") request = Request(httpbin.url + "/post", data=data) request.add_header("Content-Type", "application/json") cass_file = str(tmpdir.join("filter_jpd.yaml")) with vcr.use_cassette(cass_file, filter_post_data_parameters=["id"]): urlopen(request) with vcr.use_cassette(cass_file, filter_post_data_parameters=["id"]) as cass: assert b'"id": "secret"' not in cass.requests[0].body def test_filter_callback(tmpdir, httpbin): url = httpbin.url + "/get" cass_file = str(tmpdir.join("basic_auth_filter.yaml")) def before_record_cb(request): if request.path != "/get": return request # Test the legacy keyword. my_vcr = vcr.VCR(before_record=before_record_cb) with my_vcr.use_cassette(cass_file, filter_headers=["authorization"]) as cass: urlopen(url) assert len(cass) == 0 my_vcr = vcr.VCR(before_record_request=before_record_cb) with my_vcr.use_cassette(cass_file, filter_headers=["authorization"]) as cass: urlopen(url) assert len(cass) == 0 def test_decompress_gzip(tmpdir, httpbin): url = httpbin.url + "/gzip" request = Request(url, headers={"Accept-Encoding": ["gzip, deflate"]}) cass_file = str(tmpdir.join("gzip_response.yaml")) with vcr.use_cassette(cass_file, decode_compressed_response=True): urlopen(request) with vcr.use_cassette(cass_file) as cass: decoded_response = urlopen(url).read() assert_cassette_has_one_response(cass) assert_is_json_bytes(decoded_response) def test_decomptess_empty_body(tmpdir, httpbin): url = httpbin.url + "/gzip" request = Request(url, headers={"Accept-Encoding": ["gzip, deflate"]}, method="HEAD") cass_file = str(tmpdir.join("gzip_empty_response.yaml")) with vcr.use_cassette(cass_file, decode_compressed_response=True): response = urlopen(request).read() with vcr.use_cassette(cass_file) as cass: decoded_response = urlopen(request).read() assert_cassette_has_one_response(cass) assert decoded_response == response def test_decompress_deflate(tmpdir, httpbin): url = httpbin.url + "/deflate" request = Request(url, headers={"Accept-Encoding": ["gzip, deflate"]}) cass_file = str(tmpdir.join("deflate_response.yaml")) with vcr.use_cassette(cass_file, decode_compressed_response=True): urlopen(request) with vcr.use_cassette(cass_file) as cass: decoded_response = urlopen(url).read() assert_cassette_has_one_response(cass) assert_is_json_bytes(decoded_response) def test_decompress_regular(tmpdir, httpbin): """Test that it doesn't try to decompress content that isn't compressed""" url = httpbin.url + "/get" cass_file = str(tmpdir.join("noncompressed_response.yaml")) with vcr.use_cassette(cass_file, decode_compressed_response=True): urlopen(url) with vcr.use_cassette(cass_file) as cass: resp = urlopen(url).read() assert_cassette_has_one_response(cass) assert_is_json_bytes(resp) def test_before_record_request_corruption(tmpdir, httpbin): """Modifying request in before_record_request should not affect outgoing request""" def before_record(request): request.headers.clear() request.body = b"" return request req = Request( httpbin.url + "/post", data=urlencode({"test": "exists"}).encode(), headers={"X-Test": "exists"}, ) cass_file = str(tmpdir.join("modified_response.yaml")) with vcr.use_cassette(cass_file, before_record_request=before_record): resp = json.loads(urlopen(req).read()) assert resp["headers"]["X-Test"] == "exists" assert resp["form"]["test"] == "exists" vcrpy-6.0.1/tests/integration/test_http000066400000000000000000000020061455450430400203110ustar00rootroot00000000000000interactions: - request: body: null headers: {} method: GET uri: https://httpbin.org/get?ham=spam response: body: {string: "{\n \"args\": {\n \"ham\": \"spam\"\n }, \n \"headers\"\ : {\n \"Accept\": \"*/*\", \n \"Accept-Encoding\": \"gzip, deflate\"\ , \n \"Connection\": \"close\", \n \"Host\": \"httpbin.org\", \n \ \ \"User-Agent\": \"Python/3.5 aiohttp/2.0.1\"\n }, \n \"origin\": \"213.86.221.35\"\ , \n \"url\": \"https://httpbin.org/get?ham=spam\"\n}\n"} headers: {Access-Control-Allow-Credentials: 'true', Access-Control-Allow-Origin: '*', Connection: keep-alive, Content-Length: '299', Content-Type: application/json, Date: 'Wed, 22 Mar 2017 20:08:29 GMT', Server: gunicorn/19.7.1, Via: 1.1 vegur} status: {code: 200, message: OK} url: !!python/object/new:yarl.URL state: !!python/tuple - !!python/object/new:urllib.parse.SplitResult [https, httpbin.org, /get, ham=spam, ''] - false version: 1 vcrpy-6.0.1/tests/integration/test_httplib2.py000066400000000000000000000115101455450430400215110ustar00rootroot00000000000000"""Integration tests with httplib2""" from urllib.parse import urlencode import pytest import pytest_httpbin.certs import vcr from ..assertions import assert_cassette_has_one_response httplib2 = pytest.importorskip("httplib2") def http(): """ Returns an httplib2 HTTP instance with the certificate replaced by the httpbin one. """ kwargs = {"ca_certs": pytest_httpbin.certs.where()} return httplib2.Http(**kwargs) def test_response_code(tmpdir, httpbin_both): """Ensure we can read a response code from a fetch""" url = httpbin_both.url with vcr.use_cassette(str(tmpdir.join("atts.yaml"))): resp, _ = http().request(url) code = resp.status with vcr.use_cassette(str(tmpdir.join("atts.yaml"))): resp, _ = http().request(url) assert code == resp.status def test_random_body(httpbin_both, tmpdir): """Ensure we can read the content, and that it's served from cache""" url = httpbin_both.url + "/bytes/1024" with vcr.use_cassette(str(tmpdir.join("body.yaml"))): _, content = http().request(url) body = content with vcr.use_cassette(str(tmpdir.join("body.yaml"))): _, content = http().request(url) assert body == content def test_response_headers(tmpdir, httpbin_both): """Ensure we can get information from the response""" url = httpbin_both.url with vcr.use_cassette(str(tmpdir.join("headers.yaml"))): resp, _ = http().request(url) headers = resp.items() with vcr.use_cassette(str(tmpdir.join("headers.yaml"))): resp, _ = http().request(url) assert set(headers) == set(resp.items()) @pytest.mark.online def test_effective_url(tmpdir, httpbin): """Ensure that the effective_url is captured""" url = httpbin.url + "/redirect-to?url=.%2F&status_code=301" with vcr.use_cassette(str(tmpdir.join("headers.yaml"))): resp, _ = http().request(url) effective_url = resp["content-location"] assert effective_url == httpbin.url + "/" with vcr.use_cassette(str(tmpdir.join("headers.yaml"))): resp, _ = http().request(url) assert effective_url == resp["content-location"] def test_multiple_requests(tmpdir, httpbin_both): """Ensure that we can cache multiple requests""" urls = [httpbin_both.url, httpbin_both.url, httpbin_both.url + "/get", httpbin_both.url + "/bytes/1024"] with vcr.use_cassette(str(tmpdir.join("multiple.yaml"))) as cass: [http().request(url) for url in urls] assert len(cass) == len(urls) def test_get_data(tmpdir, httpbin_both): """Ensure that it works with query data""" data = urlencode({"some": 1, "data": "here"}) url = httpbin_both.url + "/get?" + data with vcr.use_cassette(str(tmpdir.join("get_data.yaml"))): _, res1 = http().request(url) with vcr.use_cassette(str(tmpdir.join("get_data.yaml"))): _, res2 = http().request(url) assert res1 == res2 def test_post_data(tmpdir, httpbin_both): """Ensure that it works when posting data""" data = urlencode({"some": 1, "data": "here"}) url = httpbin_both.url + "/post" with vcr.use_cassette(str(tmpdir.join("post_data.yaml"))): _, res1 = http().request(url, "POST", data) with vcr.use_cassette(str(tmpdir.join("post_data.yaml"))) as cass: _, res2 = http().request(url, "POST", data) assert res1 == res2 assert_cassette_has_one_response(cass) def test_post_unicode_data(tmpdir, httpbin_both): """Ensure that it works when posting unicode data""" data = urlencode({"snowman": "☃".encode()}) url = httpbin_both.url + "/post" with vcr.use_cassette(str(tmpdir.join("post_data.yaml"))): _, res1 = http().request(url, "POST", data) with vcr.use_cassette(str(tmpdir.join("post_data.yaml"))) as cass: _, res2 = http().request(url, "POST", data) assert res1 == res2 assert_cassette_has_one_response(cass) def test_cross_scheme(tmpdir, httpbin, httpbin_secure): """Ensure that requests between schemes are treated separately""" # First fetch a url under https, and then again under https and then # ensure that we haven't served anything out of cache, and we have two # requests / response pairs in the cassette with vcr.use_cassette(str(tmpdir.join("cross_scheme.yaml"))) as cass: http().request(httpbin_secure.url) http().request(httpbin.url) assert len(cass) == 2 assert cass.play_count == 0 def test_decorator(tmpdir, httpbin_both): """Test the decorator version of VCR.py""" url = httpbin_both.url @vcr.use_cassette(str(tmpdir.join("atts.yaml"))) def inner1(): resp, _ = http().request(url) return resp["status"] @vcr.use_cassette(str(tmpdir.join("atts.yaml"))) def inner2(): resp, _ = http().request(url) return resp["status"] assert inner1() == inner2() vcrpy-6.0.1/tests/integration/test_httpx.py000066400000000000000000000306731455450430400211430ustar00rootroot00000000000000import os import pytest import vcr from ..assertions import assert_is_json_bytes asyncio = pytest.importorskip("asyncio") httpx = pytest.importorskip("httpx") @pytest.fixture(params=["https", "http"]) def scheme(request): """Fixture that returns both http and https.""" return request.param class BaseDoRequest: _client_class = None def __init__(self, *args, **kwargs): self._client_args = args self._client_kwargs = kwargs self._client_kwargs["follow_redirects"] = self._client_kwargs.get("follow_redirects", True) def _make_client(self): return self._client_class(*self._client_args, **self._client_kwargs) class DoSyncRequest(BaseDoRequest): _client_class = httpx.Client def __enter__(self): self._client = self._make_client() return self def __exit__(self, *args): self._client.close() del self._client @property def client(self): try: return self._client except AttributeError as e: raise ValueError('To access sync client, use "with do_request() as client"') from e def __call__(self, *args, **kwargs): if hasattr(self, "_client"): return self.client.request(*args, timeout=60, **kwargs) # Use one-time context and dispose of the client afterwards with self: return self.client.request(*args, timeout=60, **kwargs) def stream(self, *args, **kwargs): if hasattr(self, "_client"): with self.client.stream(*args, **kwargs) as response: return b"".join(response.iter_bytes()) # Use one-time context and dispose of the client afterwards with self: with self.client.stream(*args, **kwargs) as response: return b"".join(response.iter_bytes()) class DoAsyncRequest(BaseDoRequest): _client_class = httpx.AsyncClient def __enter__(self): # Need to manage both loop and client, because client's implementation # will fail if the loop is closed before the client's end of life. self._loop = asyncio.new_event_loop() asyncio.set_event_loop(self._loop) self._client = self._make_client() self._loop.run_until_complete(self._client.__aenter__()) return self def __exit__(self, *args): try: self._loop.run_until_complete(self._client.__aexit__(*args)) finally: del self._client self._loop.close() del self._loop @property def client(self): try: return self._client except AttributeError as e: raise ValueError('To access async client, use "with do_request() as client"') from e def __call__(self, *args, **kwargs): if hasattr(self, "_loop"): return self._loop.run_until_complete(self.client.request(*args, **kwargs)) # Use one-time context and dispose of the loop/client afterwards with self: return self._loop.run_until_complete(self.client.request(*args, **kwargs)) async def _get_stream(self, *args, **kwargs): async with self.client.stream(*args, **kwargs) as response: content = b"" async for c in response.aiter_bytes(): content += c return content def stream(self, *args, **kwargs): if hasattr(self, "_loop"): return self._loop.run_until_complete(self._get_stream(*args, **kwargs)) # Use one-time context and dispose of the loop/client afterwards with self: return self._loop.run_until_complete(self._get_stream(*args, **kwargs)) def pytest_generate_tests(metafunc): if "do_request" in metafunc.fixturenames: metafunc.parametrize("do_request", [DoAsyncRequest, DoSyncRequest]) @pytest.fixture def yml(tmpdir, request): return str(tmpdir.join(request.function.__name__ + ".yaml")) @pytest.mark.online def test_status(tmpdir, httpbin, do_request): url = httpbin.url with vcr.use_cassette(str(tmpdir.join("status.yaml"))): response = do_request()("GET", url) with vcr.use_cassette(str(tmpdir.join("status.yaml"))) as cassette: cassette_response = do_request()("GET", url) assert cassette_response.status_code == response.status_code assert cassette.play_count == 1 @pytest.mark.online def test_case_insensitive_headers(tmpdir, httpbin, do_request): url = httpbin.url with vcr.use_cassette(str(tmpdir.join("whatever.yaml"))): do_request()("GET", url) with vcr.use_cassette(str(tmpdir.join("whatever.yaml"))) as cassette: cassette_response = do_request()("GET", url) assert "Content-Type" in cassette_response.headers assert "content-type" in cassette_response.headers assert cassette.play_count == 1 @pytest.mark.online def test_content(tmpdir, httpbin, do_request): url = httpbin.url with vcr.use_cassette(str(tmpdir.join("cointent.yaml"))): response = do_request()("GET", url) with vcr.use_cassette(str(tmpdir.join("cointent.yaml"))) as cassette: cassette_response = do_request()("GET", url) assert cassette_response.content == response.content assert cassette.play_count == 1 @pytest.mark.online def test_json(tmpdir, httpbin, do_request): url = httpbin.url + "/json" with vcr.use_cassette(str(tmpdir.join("json.yaml"))): response = do_request()("GET", url) with vcr.use_cassette(str(tmpdir.join("json.yaml"))) as cassette: cassette_response = do_request()("GET", url) assert cassette_response.json() == response.json() assert cassette.play_count == 1 @pytest.mark.online def test_params_same_url_distinct_params(tmpdir, httpbin, do_request): url = httpbin.url + "/get" headers = {"Content-Type": "application/json"} params = {"a": 1, "b": False, "c": "c"} with vcr.use_cassette(str(tmpdir.join("get.yaml"))) as cassette: response = do_request()("GET", url, params=params, headers=headers) with vcr.use_cassette(str(tmpdir.join("get.yaml"))) as cassette: cassette_response = do_request()("GET", url, params=params, headers=headers) assert cassette_response.request.url == response.request.url assert cassette_response.json() == response.json() assert cassette.play_count == 1 params = {"other": "params"} with vcr.use_cassette(str(tmpdir.join("get.yaml"))) as cassette: with pytest.raises(vcr.errors.CannotOverwriteExistingCassetteException): do_request()("GET", url, params=params, headers=headers) @pytest.mark.online def test_redirect(httpbin, yml, do_request): url = httpbin.url + "/redirect-to" response = do_request()("GET", url) with vcr.use_cassette(yml): response = do_request()("GET", url, params={"url": "./get", "status_code": 302}) with vcr.use_cassette(yml) as cassette: cassette_response = do_request()("GET", url, params={"url": "./get", "status_code": 302}) assert cassette_response.status_code == response.status_code assert len(cassette_response.history) == len(response.history) assert len(cassette) == 2 assert cassette.play_count == 2 # Assert that the real response and the cassette response have a similar # looking request_info. assert cassette_response.request.url == response.request.url assert cassette_response.request.method == response.request.method assert cassette_response.request.headers.items() == response.request.headers.items() @pytest.mark.online @pytest.mark.parametrize("url", ["https://github.com/kevin1024/vcrpy/issues/" + str(i) for i in range(3, 6)]) def test_simple_fetching(do_request, yml, url): with vcr.use_cassette(yml): do_request()("GET", url) with vcr.use_cassette(yml) as cassette: cassette_response = do_request()("GET", url) assert str(cassette_response.request.url) == url assert cassette.play_count == 1 @pytest.mark.online def test_cookies(tmpdir, httpbin, do_request): def client_cookies(client): return list(client.client.cookies) def response_cookies(response): return list(response.cookies) url = httpbin.url + "/cookies/set" params = {"k1": "v1", "k2": "v2"} with do_request(params=params, follow_redirects=False) as client: assert client_cookies(client) == [] testfile = str(tmpdir.join("cookies.yml")) with vcr.use_cassette(testfile): r1 = client("GET", url) assert response_cookies(r1) == ["k1", "k2"] r2 = client("GET", url) assert response_cookies(r2) == ["k1", "k2"] assert client_cookies(client) == ["k1", "k2"] with do_request(params=params, follow_redirects=False) as new_client: assert client_cookies(new_client) == [] with vcr.use_cassette(testfile) as cassette: cassette_response = new_client("GET", url) assert cassette.play_count == 1 assert response_cookies(cassette_response) == ["k1", "k2"] assert client_cookies(new_client) == ["k1", "k2"] @pytest.mark.online def test_stream(tmpdir, httpbin, do_request): url = httpbin.url + "/stream-bytes/512" testfile = str(tmpdir.join("stream.yml")) with vcr.use_cassette(testfile): response_content = do_request().stream("GET", url) assert len(response_content) == 512 with vcr.use_cassette(testfile) as cassette: cassette_content = do_request().stream("GET", url) assert cassette_content == response_content assert len(cassette_content) == 512 assert cassette.play_count == 1 # Regular cassette formats support the status reason, # but the old HTTPX cassette format does not. @pytest.mark.parametrize( "cassette_name,reason", [ ("requests", "great"), ("httpx_old_format", "OK"), ], ) def test_load_cassette_format(do_request, cassette_name, reason): mydir = os.path.dirname(os.path.realpath(__file__)) yml = f"{mydir}/cassettes/gzip_{cassette_name}.yaml" url = "https://httpbin.org/gzip" with vcr.use_cassette(yml) as cassette: cassette_response = do_request()("GET", url) assert str(cassette_response.request.url) == url assert cassette.play_count == 1 # Should be able to load up the JSON inside, # regardless whether the content is the gzipped # in the cassette or not. json = cassette_response.json() assert json["method"] == "GET", json assert cassette_response.status_code == 200 assert cassette_response.reason_phrase == reason def test_gzip__decode_compressed_response_false(tmpdir, httpbin, do_request): """ Ensure that httpx is able to automatically decompress the response body. """ for _ in range(2): # one for recording, one for re-playing with vcr.use_cassette(str(tmpdir.join("gzip.yaml"))) as cassette: response = do_request()("GET", httpbin + "/gzip") assert response.headers["content-encoding"] == "gzip" # i.e. not removed # The content stored in the cassette should be gzipped. assert cassette.responses[0]["body"]["string"][:2] == b"\x1f\x8b" assert_is_json_bytes(response.content) # i.e. uncompressed bytes def test_gzip__decode_compressed_response_true(do_request, tmpdir, httpbin): url = httpbin + "/gzip" expected_response = do_request()("GET", url) expected_content = expected_response.content assert expected_response.headers["content-encoding"] == "gzip" # self-test with vcr.use_cassette( str(tmpdir.join("decode_compressed.yaml")), decode_compressed_response=True, ) as cassette: r = do_request()("GET", url) assert r.headers["content-encoding"] == "gzip" # i.e. not removed content_length = r.headers["content-length"] assert r.content == expected_content # Has the cassette body been decompressed? cassette_response_body = cassette.responses[0]["body"]["string"] assert isinstance(cassette_response_body, str) # Content should be JSON. assert cassette_response_body[0:1] == "{" with vcr.use_cassette(str(tmpdir.join("decode_compressed.yaml")), decode_compressed_response=True): r = httpx.get(url) assert "content-encoding" not in r.headers # i.e. removed assert r.content == expected_content # As the content is uncompressed, it should have a bigger # length than the compressed version. assert r.headers["content-length"] > content_length vcrpy-6.0.1/tests/integration/test_ignore.py000066400000000000000000000047551455450430400212610ustar00rootroot00000000000000import socket from contextlib import contextmanager from urllib.request import urlopen import vcr @contextmanager def overridden_dns(overrides): """ Monkeypatch socket.getaddrinfo() to override DNS lookups (name will resolve to address) """ real_getaddrinfo = socket.getaddrinfo def fake_getaddrinfo(*args, **kwargs): if args[0] in overrides: address = overrides[args[0]] return [(2, 1, 6, "", (address, args[1]))] return real_getaddrinfo(*args, **kwargs) socket.getaddrinfo = fake_getaddrinfo yield socket.getaddrinfo = real_getaddrinfo def test_ignore_localhost(tmpdir, httpbin): with overridden_dns({"httpbin.org": "127.0.0.1"}): cass_file = str(tmpdir.join("filter_qs.yaml")) with vcr.use_cassette(cass_file, ignore_localhost=True) as cass: urlopen(f"http://localhost:{httpbin.port}/") assert len(cass) == 0 urlopen(f"http://httpbin.org:{httpbin.port}/") assert len(cass) == 1 def test_ignore_httpbin(tmpdir, httpbin): with overridden_dns({"httpbin.org": "127.0.0.1"}): cass_file = str(tmpdir.join("filter_qs.yaml")) with vcr.use_cassette(cass_file, ignore_hosts=["httpbin.org"]) as cass: urlopen(f"http://httpbin.org:{httpbin.port}/") assert len(cass) == 0 urlopen(f"http://localhost:{httpbin.port}/") assert len(cass) == 1 def test_ignore_localhost_and_httpbin(tmpdir, httpbin): with overridden_dns({"httpbin.org": "127.0.0.1"}): cass_file = str(tmpdir.join("filter_qs.yaml")) with vcr.use_cassette(cass_file, ignore_hosts=["httpbin.org"], ignore_localhost=True) as cass: urlopen(f"http://httpbin.org:{httpbin.port}") urlopen(f"http://localhost:{httpbin.port}") assert len(cass) == 0 def test_ignore_localhost_twice(tmpdir, httpbin): with overridden_dns({"httpbin.org": "127.0.0.1"}): cass_file = str(tmpdir.join("filter_qs.yaml")) with vcr.use_cassette(cass_file, ignore_localhost=True) as cass: urlopen(f"http://localhost:{httpbin.port}") assert len(cass) == 0 urlopen(f"http://httpbin.org:{httpbin.port}") assert len(cass) == 1 with vcr.use_cassette(cass_file, ignore_localhost=True) as cass: assert len(cass) == 1 urlopen(f"http://localhost:{httpbin.port}") urlopen(f"http://httpbin.org:{httpbin.port}") assert len(cass) == 1 vcrpy-6.0.1/tests/integration/test_matchers.py000066400000000000000000000077041455450430400216010ustar00rootroot00000000000000from urllib.request import urlopen import pytest import vcr DEFAULT_URI = "http://httpbin.org/get?p1=q1&p2=q2" # base uri for testing def _replace_httpbin(uri, httpbin, httpbin_secure): return uri.replace("http://httpbin.org", httpbin.url).replace("https://httpbin.org", httpbin_secure.url) @pytest.fixture def cassette(tmpdir, httpbin, httpbin_secure): """ Helper fixture used to prepare the cassette returns path to the recorded cassette """ default_uri = _replace_httpbin(DEFAULT_URI, httpbin, httpbin_secure) cassette_path = str(tmpdir.join("test.yml")) with vcr.use_cassette(cassette_path, record_mode=vcr.mode.ALL): urlopen(default_uri) return cassette_path @pytest.mark.parametrize( "matcher, matching_uri, not_matching_uri", [ ("uri", "http://httpbin.org/get?p1=q1&p2=q2", "http://httpbin.org/get?p2=q2&p1=q1"), ("scheme", "http://google.com/post?a=b", "https://httpbin.org/get?p1=q1&p2=q2"), ("host", "https://httpbin.org/post?a=b", "http://google.com/get?p1=q1&p2=q2"), ("path", "https://google.com/get?a=b", "http://httpbin.org/post?p1=q1&p2=q2"), ("query", "https://google.com/get?p2=q2&p1=q1", "http://httpbin.org/get?p1=q1&a=b"), ], ) def test_matchers(httpbin, httpbin_secure, cassette, matcher, matching_uri, not_matching_uri): matching_uri = _replace_httpbin(matching_uri, httpbin, httpbin_secure) not_matching_uri = _replace_httpbin(not_matching_uri, httpbin, httpbin_secure) default_uri = _replace_httpbin(DEFAULT_URI, httpbin, httpbin_secure) # play cassette with default uri with vcr.use_cassette(cassette, match_on=[matcher]) as cass: urlopen(default_uri) assert cass.play_count == 1 # play cassette with matching on uri with vcr.use_cassette(cassette, match_on=[matcher]) as cass: urlopen(matching_uri) assert cass.play_count == 1 # play cassette with not matching on uri, it should fail with pytest.raises(vcr.errors.CannotOverwriteExistingCassetteException): with vcr.use_cassette(cassette, match_on=[matcher]) as cass: urlopen(not_matching_uri) def test_method_matcher(cassette, httpbin, httpbin_secure): default_uri = _replace_httpbin(DEFAULT_URI, httpbin, httpbin_secure) # play cassette with matching on method with vcr.use_cassette(cassette, match_on=["method"]) as cass: urlopen("https://google.com/get?a=b") assert cass.play_count == 1 # should fail if method does not match with pytest.raises(vcr.errors.CannotOverwriteExistingCassetteException): with vcr.use_cassette(cassette, match_on=["method"]) as cass: # is a POST request urlopen(default_uri, data=b"") @pytest.mark.parametrize( "uri", ( DEFAULT_URI, "http://httpbin.org/get?p2=q2&p1=q1", "http://httpbin.org/get?p2=q2&p1=q1", ), ) def test_default_matcher_matches(cassette, uri, httpbin, httpbin_secure): uri = _replace_httpbin(uri, httpbin, httpbin_secure) with vcr.use_cassette(cassette) as cass: urlopen(uri) assert cass.play_count == 1 @pytest.mark.parametrize( "uri", [ "https://httpbin.org/get?p1=q1&p2=q2", "http://google.com/get?p1=q1&p2=q2", "http://httpbin.org/post?p1=q1&p2=q2", "http://httpbin.org/get?p1=q1&a=b", ], ) def test_default_matcher_does_not_match(cassette, uri, httpbin, httpbin_secure): uri = _replace_httpbin(uri, httpbin, httpbin_secure) with pytest.raises(vcr.errors.CannotOverwriteExistingCassetteException): with vcr.use_cassette(cassette): urlopen(uri) def test_default_matcher_does_not_match_on_method(cassette, httpbin, httpbin_secure): default_uri = _replace_httpbin(DEFAULT_URI, httpbin, httpbin_secure) with pytest.raises(vcr.errors.CannotOverwriteExistingCassetteException): with vcr.use_cassette(cassette): # is a POST request urlopen(default_uri, data=b"") vcrpy-6.0.1/tests/integration/test_multiple.py000066400000000000000000000017151455450430400216220ustar00rootroot00000000000000from urllib.request import urlopen import pytest import vcr from vcr.errors import CannotOverwriteExistingCassetteException def test_making_extra_request_raises_exception(tmpdir, httpbin): # make two requests in the first request that are considered # identical (since the match is based on method) with vcr.use_cassette(str(tmpdir.join("test.json")), match_on=["method"]): urlopen(httpbin.url + "/status/200") urlopen(httpbin.url + "/status/201") # Now, try to make three requests. The first two should return the # correct status codes in order, and the third should raise an # exception. with vcr.use_cassette(str(tmpdir.join("test.json")), match_on=["method"]): assert urlopen(httpbin.url + "/status/200").getcode() == 200 assert urlopen(httpbin.url + "/status/201").getcode() == 201 with pytest.raises(CannotOverwriteExistingCassetteException): urlopen(httpbin.url + "/status/200") vcrpy-6.0.1/tests/integration/test_proxy.py000066400000000000000000000037101455450430400211450ustar00rootroot00000000000000"""Test using a proxy.""" import http.server import socketserver import threading from urllib.request import urlopen import pytest import vcr # Conditional imports requests = pytest.importorskip("requests") class Proxy(http.server.SimpleHTTPRequestHandler): """ Simple proxy server. (Inspired by: http://effbot.org/librarybook/simplehttpserver.htm). """ def do_GET(self): upstream_response = urlopen(self.path) try: status = upstream_response.status headers = upstream_response.headers.items() except AttributeError: # In Python 2 the response is an addinfourl instance. status = upstream_response.code headers = upstream_response.info().items() self.log_request(status) self.send_response_only(status, upstream_response.msg) for header in headers: self.send_header(*header) self.end_headers() self.copyfile(upstream_response, self.wfile) @pytest.fixture(scope="session") def proxy_server(): with socketserver.ThreadingTCPServer(("", 0), Proxy) as httpd: proxy_process = threading.Thread(target=httpd.serve_forever) proxy_process.start() yield "http://{}:{}".format(*httpd.server_address) httpd.shutdown() proxy_process.join() def test_use_proxy(tmpdir, httpbin, proxy_server): """Ensure that it works with a proxy.""" with vcr.use_cassette(str(tmpdir.join("proxy.yaml"))): response = requests.get(httpbin.url, proxies={"http": proxy_server}) with vcr.use_cassette(str(tmpdir.join("proxy.yaml")), mode="once") as cassette: cassette_response = requests.get(httpbin.url, proxies={"http": proxy_server}) for key in set(cassette_response.headers.keys()) & set(response.headers.keys()): assert cassette_response.headers[key] == response.headers[key] assert cassette_response.headers == response.headers assert cassette.play_count == 1 vcrpy-6.0.1/tests/integration/test_record_mode.py000066400000000000000000000123561455450430400222540ustar00rootroot00000000000000from urllib.request import urlopen import pytest import vcr from vcr.errors import CannotOverwriteExistingCassetteException def test_once_record_mode(tmpdir, httpbin): testfile = str(tmpdir.join("recordmode.yml")) with vcr.use_cassette(testfile, record_mode=vcr.mode.ONCE): # cassette file doesn't exist, so create. urlopen(httpbin.url).read() with vcr.use_cassette(testfile, record_mode=vcr.mode.ONCE): # make the same request again urlopen(httpbin.url).read() # the first time, it's played from the cassette. # but, try to access something else from the same cassette, and an # exception is raised. with pytest.raises(CannotOverwriteExistingCassetteException): urlopen(httpbin.url + "/get").read() def test_once_record_mode_two_times(tmpdir, httpbin): testfile = str(tmpdir.join("recordmode.yml")) with vcr.use_cassette(testfile, record_mode=vcr.mode.ONCE): # get two of the same file urlopen(httpbin.url).read() urlopen(httpbin.url).read() with vcr.use_cassette(testfile, record_mode=vcr.mode.ONCE): # do it again urlopen(httpbin.url).read() urlopen(httpbin.url).read() def test_once_mode_three_times(tmpdir, httpbin): testfile = str(tmpdir.join("recordmode.yml")) with vcr.use_cassette(testfile, record_mode=vcr.mode.ONCE): # get three of the same file urlopen(httpbin.url).read() urlopen(httpbin.url).read() urlopen(httpbin.url).read() def test_new_episodes_record_mode(tmpdir, httpbin): testfile = str(tmpdir.join("recordmode.yml")) with vcr.use_cassette(testfile, record_mode=vcr.mode.NEW_EPISODES): # cassette file doesn't exist, so create. urlopen(httpbin.url).read() with vcr.use_cassette(testfile, record_mode=vcr.mode.NEW_EPISODES) as cass: # make the same request again urlopen(httpbin.url).read() # all responses have been played assert cass.all_played # in the "new_episodes" record mode, we can add more requests to # a cassette without repercussions. urlopen(httpbin.url + "/get").read() # one of the responses has been played assert cass.play_count == 1 # not all responses have been played assert not cass.all_played with vcr.use_cassette(testfile, record_mode=vcr.mode.NEW_EPISODES) as cass: # the cassette should now have 2 responses assert len(cass.responses) == 2 def test_new_episodes_record_mode_two_times(tmpdir, httpbin): testfile = str(tmpdir.join("recordmode.yml")) url = httpbin.url + "/bytes/1024" with vcr.use_cassette(testfile, record_mode=vcr.mode.NEW_EPISODES): # cassette file doesn't exist, so create. original_first_response = urlopen(url).read() with vcr.use_cassette(testfile, record_mode=vcr.mode.NEW_EPISODES): # make the same request again assert urlopen(url).read() == original_first_response # in the "new_episodes" record mode, we can add the same request # to the cassette without repercussions original_second_response = urlopen(url).read() with vcr.use_cassette(testfile, record_mode=vcr.mode.ONCE): # make the same request again assert urlopen(url).read() == original_first_response assert urlopen(url).read() == original_second_response # now that we are back in once mode, this should raise # an error. with pytest.raises(CannotOverwriteExistingCassetteException): urlopen(url).read() def test_all_record_mode(tmpdir, httpbin): testfile = str(tmpdir.join("recordmode.yml")) with vcr.use_cassette(testfile, record_mode=vcr.mode.ALL): # cassette file doesn't exist, so create. urlopen(httpbin.url).read() with vcr.use_cassette(testfile, record_mode=vcr.mode.ALL) as cass: # make the same request again urlopen(httpbin.url).read() # in the "all" record mode, we can add more requests to # a cassette without repercussions. urlopen(httpbin.url + "/get").read() # The cassette was never actually played, even though it existed. # that's because, in "all" mode, the requests all go directly to # the source and bypass the cassette. assert cass.play_count == 0 def test_none_record_mode(tmpdir, httpbin): # Cassette file doesn't exist, yet we are trying to make a request. # raise hell. testfile = str(tmpdir.join("recordmode.yml")) with vcr.use_cassette(testfile, record_mode=vcr.mode.NONE): with pytest.raises(CannotOverwriteExistingCassetteException): urlopen(httpbin.url).read() def test_none_record_mode_with_existing_cassette(tmpdir, httpbin): # create a cassette file testfile = str(tmpdir.join("recordmode.yml")) with vcr.use_cassette(testfile, record_mode=vcr.mode.ALL): urlopen(httpbin.url).read() # play from cassette file with vcr.use_cassette(testfile, record_mode=vcr.mode.NONE) as cass: urlopen(httpbin.url).read() assert cass.play_count == 1 # but if I try to hit the net, raise an exception. with pytest.raises(CannotOverwriteExistingCassetteException): urlopen(httpbin.url + "/get").read() vcrpy-6.0.1/tests/integration/test_register_matcher.py000066400000000000000000000021761455450430400233200ustar00rootroot00000000000000from urllib.request import urlopen import pytest import vcr def true_matcher(r1, r2): return True def false_matcher(r1, r2): return False @pytest.mark.online def test_registered_true_matcher(tmpdir, httpbin): my_vcr = vcr.VCR() my_vcr.register_matcher("true", true_matcher) testfile = str(tmpdir.join("test.yml")) with my_vcr.use_cassette(testfile, match_on=["true"]): # These 2 different urls are stored as the same request urlopen(httpbin.url) urlopen(httpbin.url + "/get") with my_vcr.use_cassette(testfile, match_on=["true"]): # I can get the response twice even though I only asked for it once urlopen(httpbin.url) urlopen(httpbin.url) @pytest.mark.online def test_registered_false_matcher(tmpdir, httpbin): my_vcr = vcr.VCR() my_vcr.register_matcher("false", false_matcher) testfile = str(tmpdir.join("test.yml")) with my_vcr.use_cassette(testfile, match_on=["false"]) as cass: # These 2 different urls are stored as different requests urlopen(httpbin.url) urlopen(httpbin.url + "/get") assert len(cass) == 2 vcrpy-6.0.1/tests/integration/test_register_persister.py000066400000000000000000000054431455450430400237150ustar00rootroot00000000000000"""Tests for cassettes with custom persistence""" # External imports import os from urllib.request import urlopen import pytest # Internal imports import vcr from vcr.persisters.filesystem import CassetteDecodeError, CassetteNotFoundError, FilesystemPersister class CustomFilesystemPersister: """Behaves just like default FilesystemPersister but adds .test extension to the cassette file""" @staticmethod def load_cassette(cassette_path, serializer): cassette_path += ".test" return FilesystemPersister.load_cassette(cassette_path, serializer) @staticmethod def save_cassette(cassette_path, cassette_dict, serializer): cassette_path += ".test" FilesystemPersister.save_cassette(cassette_path, cassette_dict, serializer) class BadPersister(FilesystemPersister): """A bad persister that raises different errors.""" @staticmethod def load_cassette(cassette_path, serializer): if "nonexistent" in cassette_path: raise CassetteNotFoundError() elif "encoding" in cassette_path: raise CassetteDecodeError() else: raise ValueError("buggy persister") def test_save_cassette_with_custom_persister(tmpdir, httpbin): """Ensure you can save a cassette using custom persister""" my_vcr = vcr.VCR() my_vcr.register_persister(CustomFilesystemPersister) # Check to make sure directory doesn't exist assert not os.path.exists(str(tmpdir.join("nonexistent"))) # Run VCR to create dir and cassette file using new save_cassette callback with my_vcr.use_cassette(str(tmpdir.join("nonexistent", "cassette.yml"))): urlopen(httpbin.url).read() # Callback should have made the file and the directory assert os.path.exists(str(tmpdir.join("nonexistent", "cassette.yml.test"))) def test_load_cassette_with_custom_persister(tmpdir, httpbin): """ Ensure you can load a cassette using custom persister """ my_vcr = vcr.VCR() my_vcr.register_persister(CustomFilesystemPersister) test_fixture = str(tmpdir.join("synopsis.json.test")) with my_vcr.use_cassette(test_fixture, serializer="json"): response = urlopen(httpbin.url).read() assert b"A simple HTTP Request & Response Service." in response def test_load_cassette_persister_exception_handling(tmpdir, httpbin): """ Ensure expected errors from persister are swallowed while unexpected ones are passed up the call stack. """ my_vcr = vcr.VCR() my_vcr.register_persister(BadPersister) with my_vcr.use_cassette("bad/nonexistent") as cass: assert len(cass) == 0 with my_vcr.use_cassette("bad/encoding") as cass: assert len(cass) == 0 with pytest.raises(ValueError): with my_vcr.use_cassette("bad/buggy") as cass: pass vcrpy-6.0.1/tests/integration/test_register_serializer.py000066400000000000000000000017021455450430400240400ustar00rootroot00000000000000import vcr class MockSerializer: def __init__(self): self.serialize_count = 0 self.deserialize_count = 0 self.load_args = None def deserialize(self, cassette_string): self.serialize_count += 1 self.cassette_string = cassette_string return {"interactions": []} def serialize(self, cassette_dict): self.deserialize_count += 1 return "" def test_registered_serializer(tmpdir): ms = MockSerializer() my_vcr = vcr.VCR() my_vcr.register_serializer("mock", ms) tmpdir.join("test.mock").write("test_data") with my_vcr.use_cassette(str(tmpdir.join("test.mock")), serializer="mock"): # Serializer deserialized once assert ms.serialize_count == 1 # and serialized the test data string assert ms.cassette_string == "test_data" # and hasn't serialized yet assert ms.deserialize_count == 0 assert ms.serialize_count == 1 vcrpy-6.0.1/tests/integration/test_request.py000066400000000000000000000013431455450430400214540ustar00rootroot00000000000000from urllib.request import urlopen import vcr def test_recorded_request_uri_with_redirected_request(tmpdir, httpbin): with vcr.use_cassette(str(tmpdir.join("test.yml"))) as cass: assert len(cass) == 0 urlopen(httpbin.url + "/redirect/3") assert cass.requests[0].uri == httpbin.url + "/redirect/3" assert cass.requests[3].uri == httpbin.url + "/get" assert len(cass) == 4 def test_records_multiple_header_values(tmpdir, httpbin): with vcr.use_cassette(str(tmpdir.join("test.yml"))) as cass: assert len(cass) == 0 urlopen(httpbin.url + "/response-headers?foo=bar&foo=baz") assert len(cass) == 1 assert cass.responses[0]["headers"]["foo"] == ["bar", "baz"] vcrpy-6.0.1/tests/integration/test_requests.py000066400000000000000000000303261455450430400216420ustar00rootroot00000000000000"""Test requests' interaction with vcr""" import pytest import vcr from ..assertions import assert_cassette_empty, assert_is_json_bytes requests = pytest.importorskip("requests") def test_status_code(httpbin_both, tmpdir): """Ensure that we can read the status code""" url = httpbin_both.url + "/" with vcr.use_cassette(str(tmpdir.join("atts.yaml"))): status_code = requests.get(url).status_code with vcr.use_cassette(str(tmpdir.join("atts.yaml"))): assert status_code == requests.get(url).status_code def test_headers(httpbin_both, tmpdir): """Ensure that we can read the headers back""" url = httpbin_both + "/" with vcr.use_cassette(str(tmpdir.join("headers.yaml"))): headers = requests.get(url).headers with vcr.use_cassette(str(tmpdir.join("headers.yaml"))): assert headers == requests.get(url).headers def test_body(tmpdir, httpbin_both): """Ensure the responses are all identical enough""" url = httpbin_both + "/bytes/1024" with vcr.use_cassette(str(tmpdir.join("body.yaml"))): content = requests.get(url).content with vcr.use_cassette(str(tmpdir.join("body.yaml"))): assert content == requests.get(url).content def test_get_empty_content_type_json(tmpdir, httpbin_both): """Ensure GET with application/json content-type and empty request body doesn't crash""" url = httpbin_both + "/status/200" headers = {"Content-Type": "application/json"} with vcr.use_cassette(str(tmpdir.join("get_empty_json.yaml")), match_on=("body",)): status = requests.get(url, headers=headers).status_code with vcr.use_cassette(str(tmpdir.join("get_empty_json.yaml")), match_on=("body",)): assert status == requests.get(url, headers=headers).status_code def test_effective_url(tmpdir, httpbin_both): """Ensure that the effective_url is captured""" url = httpbin_both.url + "/redirect-to?url=/html" with vcr.use_cassette(str(tmpdir.join("url.yaml"))): effective_url = requests.get(url).url assert effective_url == httpbin_both.url + "/html" with vcr.use_cassette(str(tmpdir.join("url.yaml"))): assert effective_url == requests.get(url).url def test_auth(tmpdir, httpbin_both): """Ensure that we can handle basic auth""" auth = ("user", "passwd") url = httpbin_both + "/basic-auth/user/passwd" with vcr.use_cassette(str(tmpdir.join("auth.yaml"))): one = requests.get(url, auth=auth) with vcr.use_cassette(str(tmpdir.join("auth.yaml"))): two = requests.get(url, auth=auth) assert one.content == two.content assert one.status_code == two.status_code def test_auth_failed(tmpdir, httpbin_both): """Ensure that we can save failed auth statuses""" auth = ("user", "wrongwrongwrong") url = httpbin_both + "/basic-auth/user/passwd" with vcr.use_cassette(str(tmpdir.join("auth-failed.yaml"))) as cass: # Ensure that this is empty to begin with assert_cassette_empty(cass) one = requests.get(url, auth=auth) two = requests.get(url, auth=auth) assert one.content == two.content assert one.status_code == two.status_code == 401 def test_post(tmpdir, httpbin_both): """Ensure that we can post and cache the results""" data = {"key1": "value1", "key2": "value2"} url = httpbin_both + "/post" with vcr.use_cassette(str(tmpdir.join("requests.yaml"))): req1 = requests.post(url, data).content with vcr.use_cassette(str(tmpdir.join("requests.yaml"))): req2 = requests.post(url, data).content assert req1 == req2 def test_post_chunked_binary(tmpdir, httpbin): """Ensure that we can send chunked binary without breaking while trying to concatenate bytes with str.""" data1 = iter([b"data", b"to", b"send"]) data2 = iter([b"data", b"to", b"send"]) url = httpbin.url + "/post" with vcr.use_cassette(str(tmpdir.join("requests.yaml"))): req1 = requests.post(url, data1).content with vcr.use_cassette(str(tmpdir.join("requests.yaml"))): req2 = requests.post(url, data2).content assert req1 == req2 def test_redirects(tmpdir, httpbin_both): """Ensure that we can handle redirects""" url = httpbin_both + "/redirect-to?url=bytes/1024" with vcr.use_cassette(str(tmpdir.join("requests.yaml"))): content = requests.get(url).content with vcr.use_cassette(str(tmpdir.join("requests.yaml"))) as cass: assert content == requests.get(url).content # Ensure that we've now cached *two* responses. One for the redirect # and one for the final fetch assert len(cass) == 2 assert cass.play_count == 2 def test_raw_stream(tmpdir, httpbin): expected_response = requests.get(httpbin.url, stream=True) expected_content = b"".join(expected_response.raw.stream()) for _ in range(2): # one for recording, one for cassette reply with vcr.use_cassette(str(tmpdir.join("raw_stream.yaml"))): actual_response = requests.get(httpbin.url, stream=True) actual_content = b"".join(actual_response.raw.stream()) assert actual_content == expected_content def test_cross_scheme(tmpdir, httpbin_secure, httpbin): """Ensure that requests between schemes are treated separately""" # First fetch a url under http, and then again under https and then # ensure that we haven't served anything out of cache, and we have two # requests / response pairs in the cassette with vcr.use_cassette(str(tmpdir.join("cross_scheme.yaml"))) as cass: requests.get(httpbin_secure + "/") requests.get(httpbin + "/") assert cass.play_count == 0 assert len(cass) == 2 def test_gzip__decode_compressed_response_false(tmpdir, httpbin_both): """ Ensure that requests (actually urllib3) is able to automatically decompress the response body """ for _ in range(2): # one for recording, one for re-playing with vcr.use_cassette(str(tmpdir.join("gzip.yaml"))): response = requests.get(httpbin_both + "/gzip") assert response.headers["content-encoding"] == "gzip" # i.e. not removed assert_is_json_bytes(response.content) # i.e. uncompressed bytes def test_gzip__decode_compressed_response_true(tmpdir, httpbin_both): url = httpbin_both + "/gzip" expected_response = requests.get(url) expected_content = expected_response.content assert expected_response.headers["content-encoding"] == "gzip" # self-test with vcr.use_cassette( str(tmpdir.join("decode_compressed.yaml")), decode_compressed_response=True, ) as cassette: r = requests.get(url) assert r.headers["content-encoding"] == "gzip" # i.e. not removed assert r.content == expected_content # Has the cassette body been decompressed? cassette_response_body = cassette.responses[0]["body"]["string"] assert isinstance(cassette_response_body, str) with vcr.use_cassette(str(tmpdir.join("decode_compressed.yaml")), decode_compressed_response=True): r = requests.get(url) assert "content-encoding" not in r.headers # i.e. removed assert r.content == expected_content def test_session_and_connection_close(tmpdir, httpbin): """ This tests the issue in https://github.com/kevin1024/vcrpy/issues/48 If you use a requests.session and the connection is closed, then an exception is raised in the urllib3 module vendored into requests: `AttributeError: 'NoneType' object has no attribute 'settimeout'` """ with vcr.use_cassette(str(tmpdir.join("session_connection_closed.yaml"))): session = requests.session() session.get(httpbin + "/get", headers={"Connection": "close"}) session.get(httpbin + "/get", headers={"Connection": "close"}) def test_https_with_cert_validation_disabled(tmpdir, httpbin_secure): with vcr.use_cassette(str(tmpdir.join("cert_validation_disabled.yaml"))): requests.get(httpbin_secure.url, verify=False) def test_session_can_make_requests_after_requests_unpatched(tmpdir, httpbin): with vcr.use_cassette(str(tmpdir.join("test_session_after_unpatched.yaml"))): session = requests.session() session.get(httpbin + "/get") with vcr.use_cassette(str(tmpdir.join("test_session_after_unpatched.yaml"))): session = requests.session() session.get(httpbin + "/get") session.get(httpbin + "/status/200") def test_session_created_before_use_cassette_is_patched(tmpdir, httpbin_both): url = httpbin_both + "/bytes/1024" # Record arbitrary, random data to the cassette with vcr.use_cassette(str(tmpdir.join("session_created_outside.yaml"))): session = requests.session() body = session.get(url).content # Create a session outside of any cassette context manager session = requests.session() # Make a request to make sure that a connectionpool is instantiated session.get(httpbin_both + "/get") with vcr.use_cassette(str(tmpdir.join("session_created_outside.yaml"))): # These should only be the same if the patching succeeded. assert session.get(url).content == body def test_nested_cassettes_with_session_created_before_nesting(httpbin_both, tmpdir): """ This tests ensures that a session that was created while one cassette was active is patched to the use the responses of a second cassette when it is enabled. """ url = httpbin_both + "/bytes/1024" with vcr.use_cassette(str(tmpdir.join("first_nested.yaml"))): session = requests.session() first_body = session.get(url).content with vcr.use_cassette(str(tmpdir.join("second_nested.yaml"))): second_body = session.get(url).content third_body = requests.get(url).content with vcr.use_cassette(str(tmpdir.join("second_nested.yaml"))): session = requests.session() assert session.get(url).content == second_body with vcr.use_cassette(str(tmpdir.join("first_nested.yaml"))): assert session.get(url).content == first_body assert session.get(url).content == third_body # Make sure that the session can now get content normally. assert "User-agent" in session.get(httpbin_both.url + "/robots.txt").text def test_post_file(tmpdir, httpbin_both): """Ensure that we handle posting a file.""" url = httpbin_both + "/post" with vcr.use_cassette(str(tmpdir.join("post_file.yaml"))) as cass, open(".editorconfig", "rb") as f: original_response = requests.post(url, f).content # This also tests that we do the right thing with matching the body when they are files. with vcr.use_cassette( str(tmpdir.join("post_file.yaml")), match_on=("method", "scheme", "host", "port", "path", "query", "body"), ) as cass: with open(".editorconfig", "rb") as f: editorconfig = f.read() assert cass.requests[0].body.read() == editorconfig with open(".editorconfig", "rb") as f: new_response = requests.post(url, f).content assert original_response == new_response def test_filter_post_params(tmpdir, httpbin_both): """ This tests the issue in https://github.com/kevin1024/vcrpy/issues/158 Ensure that a post request made through requests can still be filtered. with vcr.use_cassette(cass_file, filter_post_data_parameters=['id']) as cass: assert b'id=secret' not in cass.requests[0].body """ url = httpbin_both.url + "/post" cass_loc = str(tmpdir.join("filter_post_params.yaml")) with vcr.use_cassette(cass_loc, filter_post_data_parameters=["key"]) as cass: requests.post(url, data={"key": "value"}) with vcr.use_cassette(cass_loc, filter_post_data_parameters=["key"]) as cass: assert b"key=value" not in cass.requests[0].body def test_post_unicode_match_on_body(tmpdir, httpbin_both): """Ensure that matching on POST body that contains Unicode characters works.""" data = {"key1": "value1", "●‿●": "٩(●̮̮̃•̃)۶"} url = httpbin_both + "/post" with vcr.use_cassette(str(tmpdir.join("requests.yaml")), additional_matchers=("body",)): req1 = requests.post(url, data).content with vcr.use_cassette(str(tmpdir.join("requests.yaml")), additional_matchers=("body",)): req2 = requests.post(url, data).content assert req1 == req2 vcrpy-6.0.1/tests/integration/test_stubs.py000066400000000000000000000116161455450430400211300ustar00rootroot00000000000000import http.client as httplib import json import zlib import vcr from ..assertions import assert_is_json_bytes def _headers_are_case_insensitive(host, port): conn = httplib.HTTPConnection(host, port) conn.request("GET", "/cookies/set?k1=v1") r1 = conn.getresponse() cookie_data1 = r1.getheader("set-cookie") conn = httplib.HTTPConnection(host, port) conn.request("GET", "/cookies/set?k1=v1") r2 = conn.getresponse() cookie_data2 = r2.getheader("Set-Cookie") return cookie_data1 == cookie_data2 def test_case_insensitivity(tmpdir, httpbin): testfile = str(tmpdir.join("case_insensitivity.yml")) # check if headers are case insensitive outside of vcrpy host, port = httpbin.host, httpbin.port outside = _headers_are_case_insensitive(host, port) with vcr.use_cassette(testfile): # check if headers are case insensitive inside of vcrpy inside = _headers_are_case_insensitive(host, port) # check if headers are case insensitive after vcrpy deserializes headers inside2 = _headers_are_case_insensitive(host, port) # behavior should be the same both inside and outside assert outside == inside == inside2 def _multiple_header_value(httpbin): conn = httplib.HTTPConnection(httpbin.host, httpbin.port) conn.request("GET", "/response-headers?foo=bar&foo=baz") r = conn.getresponse() return r.getheader("foo") def test_multiple_headers(tmpdir, httpbin): testfile = str(tmpdir.join("multiple_headers.yaml")) outside = _multiple_header_value(httpbin) with vcr.use_cassette(testfile): inside = _multiple_header_value(httpbin) assert outside == inside def test_original_decoded_response_is_not_modified(tmpdir, httpbin): testfile = str(tmpdir.join("decoded_response.yml")) host, port = httpbin.host, httpbin.port conn = httplib.HTTPConnection(host, port) conn.request("GET", "/gzip") outside = conn.getresponse() with vcr.use_cassette(testfile, decode_compressed_response=True): conn = httplib.HTTPConnection(host, port) conn.request("GET", "/gzip") inside = conn.getresponse() # Assert that we do not modify the original response while appending # to the cassette. assert "gzip" == inside.headers["content-encoding"] # They should effectively be the same response. inside_headers = (h for h in inside.headers.items() if h[0].lower() != "date") outside_headers = (h for h in outside.getheaders() if h[0].lower() != "date") assert set(inside_headers) == set(outside_headers) inside = zlib.decompress(inside.read(), 16 + zlib.MAX_WBITS) outside = zlib.decompress(outside.read(), 16 + zlib.MAX_WBITS) assert inside == outside # Even though the above are raw bytes, the JSON data should have been # decoded and saved to the cassette. with vcr.use_cassette(testfile): conn = httplib.HTTPConnection(host, port) conn.request("GET", "/gzip") inside = conn.getresponse() assert "content-encoding" not in inside.headers assert_is_json_bytes(inside.read()) def _make_before_record_response(fields, replacement="[REDACTED]"): def before_record_response(response): string_body = response["body"]["string"].decode("utf8") body = json.loads(string_body) for field in fields: if field in body: body[field] = replacement response["body"]["string"] = json.dumps(body).encode() return response return before_record_response def test_original_response_is_not_modified_by_before_filter(tmpdir, httpbin): testfile = str(tmpdir.join("sensitive_data_scrubbed_response.yml")) host, port = httpbin.host, httpbin.port field_to_scrub = "url" replacement = "[YOU_CANT_HAVE_THE_MANGO]" conn = httplib.HTTPConnection(host, port) conn.request("GET", "/get") outside = conn.getresponse() callback = _make_before_record_response([field_to_scrub], replacement) with vcr.use_cassette(testfile, before_record_response=callback): conn = httplib.HTTPConnection(host, port) conn.request("GET", "/get") inside = conn.getresponse() # The scrubbed field should be the same, because no cassette existed. # Furthermore, the responses should be identical. inside_body = json.loads(inside.read()) outside_body = json.loads(outside.read()) assert not inside_body[field_to_scrub] == replacement assert inside_body[field_to_scrub] == outside_body[field_to_scrub] # Ensure that when a cassette exists, the scrubbed response is returned. with vcr.use_cassette(testfile, before_record_response=callback): conn = httplib.HTTPConnection(host, port) conn.request("GET", "/get") inside = conn.getresponse() inside_body = json.loads(inside.read()) assert inside_body[field_to_scrub] == replacement vcrpy-6.0.1/tests/integration/test_tornado.py000066400000000000000000000324451455450430400214410ustar00rootroot00000000000000"""Test requests' interaction with vcr""" import asyncio import functools import inspect import json import pytest import vcr from vcr.errors import CannotOverwriteExistingCassetteException from ..assertions import assert_cassette_empty, assert_is_json_bytes tornado = pytest.importorskip("tornado") gen = pytest.importorskip("tornado.gen") http = pytest.importorskip("tornado.httpclient") # whether the current version of Tornado supports the raise_error argument for # fetch(). supports_raise_error = tornado.version_info >= (4,) raise_error_for_response_code_only = tornado.version_info >= (6,) def gen_test(func): @functools.wraps(func) def wrapper(*args, **kwargs): async def coro(): return await gen.coroutine(func)(*args, **kwargs) return asyncio.run(coro()) # Patch the signature so pytest can inject fixtures # we can't use wrapt.decorator because it returns a generator function wrapper.__signature__ = inspect.signature(func) return wrapper @pytest.fixture(params=["https", "http"]) def scheme(request): """Fixture that returns both http and https.""" return request.param @pytest.fixture(params=["simple", "curl", "default"]) def get_client(request): if request.param == "simple": from tornado import simple_httpclient as simple return lambda: simple.SimpleAsyncHTTPClient() elif request.param == "curl": curl = pytest.importorskip("tornado.curl_httpclient") return lambda: curl.CurlAsyncHTTPClient() else: return lambda: http.AsyncHTTPClient() def get(client, url, **kwargs): fetch_kwargs = {} if supports_raise_error: fetch_kwargs["raise_error"] = kwargs.pop("raise_error", True) return client.fetch(http.HTTPRequest(url, method="GET", **kwargs), **fetch_kwargs) def post(client, url, data=None, **kwargs): if data: kwargs["body"] = json.dumps(data) return client.fetch(http.HTTPRequest(url, method="POST", **kwargs)) @pytest.mark.online @gen_test def test_status_code(get_client, scheme, tmpdir): """Ensure that we can read the status code""" url = scheme + "://httpbin.org/" with vcr.use_cassette(str(tmpdir.join("atts.yaml"))): status_code = (yield get(get_client(), url)).code with vcr.use_cassette(str(tmpdir.join("atts.yaml"))) as cass: assert status_code == (yield get(get_client(), url)).code assert 1 == cass.play_count @pytest.mark.online @gen_test def test_headers(get_client, scheme, tmpdir): """Ensure that we can read the headers back""" url = scheme + "://httpbin.org/" with vcr.use_cassette(str(tmpdir.join("headers.yaml"))): headers = (yield get(get_client(), url)).headers with vcr.use_cassette(str(tmpdir.join("headers.yaml"))) as cass: assert headers == (yield get(get_client(), url)).headers assert 1 == cass.play_count @pytest.mark.online @gen_test def test_body(get_client, tmpdir, scheme): """Ensure the responses are all identical enough""" url = scheme + "://httpbin.org/bytes/1024" with vcr.use_cassette(str(tmpdir.join("body.yaml"))): content = (yield get(get_client(), url)).body with vcr.use_cassette(str(tmpdir.join("body.yaml"))) as cass: assert content == (yield get(get_client(), url)).body assert 1 == cass.play_count @gen_test def test_effective_url(get_client, tmpdir, httpbin): """Ensure that the effective_url is captured""" url = httpbin.url + "/redirect/1" with vcr.use_cassette(str(tmpdir.join("url.yaml"))): effective_url = (yield get(get_client(), url)).effective_url assert effective_url == httpbin.url + "/get" with vcr.use_cassette(str(tmpdir.join("url.yaml"))) as cass: assert effective_url == (yield get(get_client(), url)).effective_url assert 1 == cass.play_count @pytest.mark.online @gen_test def test_auth(get_client, tmpdir, scheme): """Ensure that we can handle basic auth""" auth = ("user", "passwd") url = scheme + "://httpbin.org/basic-auth/user/passwd" with vcr.use_cassette(str(tmpdir.join("auth.yaml"))): one = yield get(get_client(), url, auth_username=auth[0], auth_password=auth[1]) with vcr.use_cassette(str(tmpdir.join("auth.yaml"))) as cass: two = yield get(get_client(), url, auth_username=auth[0], auth_password=auth[1]) assert one.body == two.body assert one.code == two.code assert 1 == cass.play_count @pytest.mark.online @gen_test def test_auth_failed(get_client, tmpdir, scheme): """Ensure that we can save failed auth statuses""" auth = ("user", "wrongwrongwrong") url = scheme + "://httpbin.org/basic-auth/user/passwd" with vcr.use_cassette(str(tmpdir.join("auth-failed.yaml"))) as cass: # Ensure that this is empty to begin with assert_cassette_empty(cass) with pytest.raises(http.HTTPError) as exc_info: yield get(get_client(), url, auth_username=auth[0], auth_password=auth[1]) one = exc_info.value.response assert exc_info.value.code == 401 with vcr.use_cassette(str(tmpdir.join("auth-failed.yaml"))) as cass: with pytest.raises(http.HTTPError) as exc_info: two = yield get(get_client(), url, auth_username=auth[0], auth_password=auth[1]) two = exc_info.value.response assert exc_info.value.code == 401 assert one.body == two.body assert one.code == two.code == 401 assert 1 == cass.play_count @pytest.mark.online @gen_test def test_post(get_client, tmpdir, scheme): """Ensure that we can post and cache the results""" data = {"key1": "value1", "key2": "value2"} url = scheme + "://httpbin.org/post" with vcr.use_cassette(str(tmpdir.join("requests.yaml"))): req1 = (yield post(get_client(), url, data)).body with vcr.use_cassette(str(tmpdir.join("requests.yaml"))) as cass: req2 = (yield post(get_client(), url, data)).body assert req1 == req2 assert 1 == cass.play_count @gen_test def test_redirects(get_client, tmpdir, httpbin): """Ensure that we can handle redirects""" url = httpbin + "/redirect-to?url=bytes/1024&status_code=301" with vcr.use_cassette(str(tmpdir.join("requests.yaml"))): content = (yield get(get_client(), url)).body with vcr.use_cassette(str(tmpdir.join("requests.yaml"))) as cass: assert content == (yield get(get_client(), url)).body assert cass.play_count == 1 @pytest.mark.online @gen_test def test_cross_scheme(get_client, tmpdir, scheme): """Ensure that requests between schemes are treated separately""" # First fetch a url under http, and then again under https and then # ensure that we haven't served anything out of cache, and we have two # requests / response pairs in the cassette with vcr.use_cassette(str(tmpdir.join("cross_scheme.yaml"))) as cass: yield get(get_client(), "https://httpbin.org/") yield get(get_client(), "http://httpbin.org/") assert cass.play_count == 0 assert len(cass) == 2 # Then repeat the same requests and ensure both were replayed. with vcr.use_cassette(str(tmpdir.join("cross_scheme.yaml"))) as cass: yield get(get_client(), "https://httpbin.org/") yield get(get_client(), "http://httpbin.org/") assert cass.play_count == 2 @pytest.mark.online @gen_test def test_gzip(get_client, tmpdir, scheme): """ Ensure that httpclient is able to automatically decompress the response body """ url = scheme + "://httpbin.org/gzip" # use_gzip was renamed to decompress_response in 4.0 kwargs = {} if tornado.version_info < (4,): kwargs["use_gzip"] = True else: kwargs["decompress_response"] = True with vcr.use_cassette(str(tmpdir.join("gzip.yaml"))): response = yield get(get_client(), url, **kwargs) assert_is_json_bytes(response.body) with vcr.use_cassette(str(tmpdir.join("gzip.yaml"))) as cass: response = yield get(get_client(), url, **kwargs) assert_is_json_bytes(response.body) assert 1 == cass.play_count @pytest.mark.online @gen_test def test_https_with_cert_validation_disabled(get_client, tmpdir): cass_path = str(tmpdir.join("cert_validation_disabled.yaml")) with vcr.use_cassette(cass_path): yield get(get_client(), "https://httpbin.org", validate_cert=False) with vcr.use_cassette(cass_path) as cass: yield get(get_client(), "https://httpbin.org", validate_cert=False) assert 1 == cass.play_count @gen_test def test_unsupported_features_raises_in_future(get_client, tmpdir): """Ensure that the exception for an AsyncHTTPClient feature not being supported is raised inside the future.""" def callback(chunk): raise AssertionError("Did not expect to be called.") with vcr.use_cassette(str(tmpdir.join("invalid.yaml"))): future = get(get_client(), "http://httpbin.org", streaming_callback=callback) with pytest.raises(Exception) as excinfo: yield future assert "not yet supported by VCR" in str(excinfo) @pytest.mark.skipif(not supports_raise_error, reason="raise_error unavailable in tornado <= 3") @pytest.mark.skipif( raise_error_for_response_code_only, reason="raise_error only ignores HTTPErrors due to response code", ) @gen_test def test_unsupported_features_raise_error_disabled(get_client, tmpdir): """Ensure that the exception for an AsyncHTTPClient feature not being supported is not raised if raise_error=False.""" def callback(chunk): raise AssertionError("Did not expect to be called.") with vcr.use_cassette(str(tmpdir.join("invalid.yaml"))): response = yield get( get_client(), "http://httpbin.org", streaming_callback=callback, raise_error=False, ) assert "not yet supported by VCR" in str(response.error) @pytest.mark.online @gen_test def test_cannot_overwrite_cassette_raises_in_future(get_client, tmpdir): """Ensure that CannotOverwriteExistingCassetteException is raised inside the future.""" with vcr.use_cassette(str(tmpdir.join("overwrite.yaml"))): yield get(get_client(), "http://httpbin.org/get") with vcr.use_cassette(str(tmpdir.join("overwrite.yaml"))): future = get(get_client(), "http://httpbin.org/headers") with pytest.raises(CannotOverwriteExistingCassetteException): yield future @pytest.mark.skipif(not supports_raise_error, reason="raise_error unavailable in tornado <= 3") @pytest.mark.skipif( raise_error_for_response_code_only, reason="raise_error only ignores HTTPErrors due to response code", ) @gen_test def test_cannot_overwrite_cassette_raise_error_disabled(get_client, tmpdir): """Ensure that CannotOverwriteExistingCassetteException is not raised if raise_error=False in the fetch() call.""" with vcr.use_cassette(str(tmpdir.join("overwrite.yaml"))): yield get(get_client(), "http://httpbin.org/get", raise_error=False) with vcr.use_cassette(str(tmpdir.join("overwrite.yaml"))): response = yield get(get_client(), "http://httpbin.org/headers", raise_error=False) assert isinstance(response.error, CannotOverwriteExistingCassetteException) @gen_test @vcr.use_cassette(path_transformer=vcr.default_vcr.ensure_suffix(".yaml")) def test_tornado_with_decorator_use_cassette(get_client): response = yield get_client().fetch(http.HTTPRequest("http://www.google.com/", method="GET")) assert response.body.decode("utf-8") == "not actually google" @gen_test @vcr.use_cassette(path_transformer=vcr.default_vcr.ensure_suffix(".yaml")) def test_tornado_exception_can_be_caught(get_client): try: yield get(get_client(), "http://httpbin.org/status/500") except http.HTTPError as e: assert e.code == 500 try: yield get(get_client(), "http://httpbin.org/status/404") except http.HTTPError as e: assert e.code == 404 @pytest.mark.online @gen_test def test_existing_references_get_patched(tmpdir): from tornado.httpclient import AsyncHTTPClient with vcr.use_cassette(str(tmpdir.join("data.yaml"))): client = AsyncHTTPClient() yield get(client, "http://httpbin.org/get") with vcr.use_cassette(str(tmpdir.join("data.yaml"))) as cass: yield get(client, "http://httpbin.org/get") assert cass.play_count == 1 @pytest.mark.online @gen_test def test_existing_instances_get_patched(get_client, tmpdir): """Ensure that existing instances of AsyncHTTPClient get patched upon entering VCR context.""" client = get_client() with vcr.use_cassette(str(tmpdir.join("data.yaml"))): yield get(client, "http://httpbin.org/get") with vcr.use_cassette(str(tmpdir.join("data.yaml"))) as cass: yield get(client, "http://httpbin.org/get") assert cass.play_count == 1 @pytest.mark.online @gen_test def test_request_time_is_set(get_client, tmpdir): """Ensures that the request_time on HTTPResponses is set.""" with vcr.use_cassette(str(tmpdir.join("data.yaml"))): client = get_client() response = yield get(client, "http://httpbin.org/get") assert response.request_time is not None with vcr.use_cassette(str(tmpdir.join("data.yaml"))) as cass: client = get_client() response = yield get(client, "http://httpbin.org/get") assert response.request_time is not None assert cass.play_count == 1 vcrpy-6.0.1/tests/integration/test_tornado_exception_can_be_caught.yaml000066400000000000000000000025531455450430400266500ustar00rootroot00000000000000interactions: - request: body: null headers: {} method: GET uri: http://httpbin.org/status/500 response: body: {string: !!python/unicode ''} headers: - !!python/tuple - Content-Length - ['0'] - !!python/tuple - Server - [nginx] - !!python/tuple - Connection - [close] - !!python/tuple - Access-Control-Allow-Credentials - ['true'] - !!python/tuple - Date - ['Thu, 30 Jul 2015 17:32:39 GMT'] - !!python/tuple - Access-Control-Allow-Origin - ['*'] - !!python/tuple - Content-Type - [text/html; charset=utf-8] status: {code: 500, message: INTERNAL SERVER ERROR} - request: body: null headers: {} method: GET uri: http://httpbin.org/status/404 response: body: {string: !!python/unicode ''} headers: - !!python/tuple - Content-Length - ['0'] - !!python/tuple - Server - [nginx] - !!python/tuple - Connection - [close] - !!python/tuple - Access-Control-Allow-Credentials - ['true'] - !!python/tuple - Date - ['Thu, 30 Jul 2015 17:32:39 GMT'] - !!python/tuple - Access-Control-Allow-Origin - ['*'] - !!python/tuple - Content-Type - [text/html; charset=utf-8] status: {code: 404, message: NOT FOUND} version: 1 vcrpy-6.0.1/tests/integration/test_tornado_with_decorator_use_cassette.yaml000066400000000000000000000030361455450430400276110ustar00rootroot00000000000000interactions: - request: body: null headers: {} method: GET uri: http://www.google.com/ response: body: {string: !!python/unicode 'not actually google'} headers: - !!python/tuple - Expires - ['-1'] - !!python/tuple - Connection - [close] - !!python/tuple - P3p - ['CP="This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info."'] - !!python/tuple - Alternate-Protocol - ['80:quic,p=0'] - !!python/tuple - Accept-Ranges - [none] - !!python/tuple - X-Xss-Protection - [1; mode=block] - !!python/tuple - Vary - [Accept-Encoding] - !!python/tuple - Date - ['Thu, 30 Jul 2015 08:41:40 GMT'] - !!python/tuple - Cache-Control - ['private, max-age=0'] - !!python/tuple - Content-Type - [text/html; charset=ISO-8859-1] - !!python/tuple - Set-Cookie - ['PREF=ID=1111111111111111:FF=0:TM=1438245700:LM=1438245700:V=1:S=GAzVO0ALebSpC_cJ; expires=Sat, 29-Jul-2017 08:41:40 GMT; path=/; domain=.google.com', 'NID=69=Br7oRAwgmKoK__HC6FEnuxglTFDmFxqP6Md63lKhzW1w6WkDbp3U90CDxnUKvDP6wJH8yxY5Lk5ZnFf66Q1B0d4OsYoKgq0vjfBAYXuCIAWtOuGZEOsFXanXs7pt2Mjx; expires=Fri, 29-Jan-2016 08:41:40 GMT; path=/; domain=.google.com; HttpOnly'] - !!python/tuple - X-Frame-Options - [SAMEORIGIN] - !!python/tuple - Server - [gws] status: {code: 200, message: OK} version: 1 vcrpy-6.0.1/tests/integration/test_urllib2.py000066400000000000000000000117531455450430400213450ustar00rootroot00000000000000"""Integration tests with urllib2""" import ssl from urllib.parse import urlencode from urllib.request import urlopen import pytest_httpbin.certs from pytest import mark # Internal imports import vcr from ..assertions import assert_cassette_has_one_response def urlopen_with_cafile(*args, **kwargs): context = ssl.create_default_context(cafile=pytest_httpbin.certs.where()) context.check_hostname = False kwargs["context"] = context try: return urlopen(*args, **kwargs) except TypeError: # python2/pypi don't let us override this del kwargs["cafile"] return urlopen(*args, **kwargs) def test_response_code(httpbin_both, tmpdir): """Ensure we can read a response code from a fetch""" url = httpbin_both.url with vcr.use_cassette(str(tmpdir.join("atts.yaml"))): code = urlopen_with_cafile(url).getcode() with vcr.use_cassette(str(tmpdir.join("atts.yaml"))): assert code == urlopen_with_cafile(url).getcode() def test_random_body(httpbin_both, tmpdir): """Ensure we can read the content, and that it's served from cache""" url = httpbin_both.url + "/bytes/1024" with vcr.use_cassette(str(tmpdir.join("body.yaml"))): body = urlopen_with_cafile(url).read() with vcr.use_cassette(str(tmpdir.join("body.yaml"))): assert body == urlopen_with_cafile(url).read() def test_response_headers(httpbin_both, tmpdir): """Ensure we can get information from the response""" url = httpbin_both.url with vcr.use_cassette(str(tmpdir.join("headers.yaml"))): open1 = urlopen_with_cafile(url).info().items() with vcr.use_cassette(str(tmpdir.join("headers.yaml"))): open2 = urlopen_with_cafile(url).info().items() assert sorted(open1) == sorted(open2) @mark.online def test_effective_url(tmpdir, httpbin): """Ensure that the effective_url is captured""" url = httpbin.url + "/redirect-to?url=.%2F&status_code=301" with vcr.use_cassette(str(tmpdir.join("headers.yaml"))): effective_url = urlopen_with_cafile(url).geturl() assert effective_url == httpbin.url + "/" with vcr.use_cassette(str(tmpdir.join("headers.yaml"))): assert effective_url == urlopen_with_cafile(url).geturl() def test_multiple_requests(httpbin_both, tmpdir): """Ensure that we can cache multiple requests""" urls = [httpbin_both.url, httpbin_both.url, httpbin_both.url + "/get", httpbin_both.url + "/bytes/1024"] with vcr.use_cassette(str(tmpdir.join("multiple.yaml"))) as cass: [urlopen_with_cafile(url) for url in urls] assert len(cass) == len(urls) def test_get_data(httpbin_both, tmpdir): """Ensure that it works with query data""" data = urlencode({"some": 1, "data": "here"}) url = httpbin_both.url + "/get?" + data with vcr.use_cassette(str(tmpdir.join("get_data.yaml"))): res1 = urlopen_with_cafile(url).read() with vcr.use_cassette(str(tmpdir.join("get_data.yaml"))): res2 = urlopen_with_cafile(url).read() assert res1 == res2 def test_post_data(httpbin_both, tmpdir): """Ensure that it works when posting data""" data = urlencode({"some": 1, "data": "here"}).encode("utf-8") url = httpbin_both.url + "/post" with vcr.use_cassette(str(tmpdir.join("post_data.yaml"))): res1 = urlopen_with_cafile(url, data).read() with vcr.use_cassette(str(tmpdir.join("post_data.yaml"))) as cass: res2 = urlopen_with_cafile(url, data).read() assert len(cass) == 1 assert res1 == res2 assert_cassette_has_one_response(cass) def test_post_unicode_data(httpbin_both, tmpdir): """Ensure that it works when posting unicode data""" data = urlencode({"snowman": "☃".encode()}).encode("utf-8") url = httpbin_both.url + "/post" with vcr.use_cassette(str(tmpdir.join("post_data.yaml"))): res1 = urlopen_with_cafile(url, data).read() with vcr.use_cassette(str(tmpdir.join("post_data.yaml"))) as cass: res2 = urlopen_with_cafile(url, data).read() assert len(cass) == 1 assert res1 == res2 assert_cassette_has_one_response(cass) def test_cross_scheme(tmpdir, httpbin_secure, httpbin): """Ensure that requests between schemes are treated separately""" # First fetch a url under https, and then again under https and then # ensure that we haven't served anything out of cache, and we have two # requests / response pairs in the cassette with vcr.use_cassette(str(tmpdir.join("cross_scheme.yaml"))) as cass: urlopen_with_cafile(httpbin_secure.url) urlopen_with_cafile(httpbin.url) assert len(cass) == 2 assert cass.play_count == 0 def test_decorator(httpbin_both, tmpdir): """Test the decorator version of VCR.py""" url = httpbin_both.url @vcr.use_cassette(str(tmpdir.join("atts.yaml"))) def inner1(): return urlopen_with_cafile(url).getcode() @vcr.use_cassette(str(tmpdir.join("atts.yaml"))) def inner2(): return urlopen_with_cafile(url).getcode() assert inner1() == inner2() vcrpy-6.0.1/tests/integration/test_urllib3.py000066400000000000000000000144211455450430400213410ustar00rootroot00000000000000"""Integration tests with urllib3""" # coding=utf-8 import pytest import pytest_httpbin import vcr from vcr.patch import force_reset from vcr.stubs.compat import get_headers from ..assertions import assert_cassette_empty, assert_is_json_bytes urllib3 = pytest.importorskip("urllib3") @pytest.fixture(scope="module") def verify_pool_mgr(): return urllib3.PoolManager( cert_reqs="CERT_REQUIRED", ca_certs=pytest_httpbin.certs.where(), # Force certificate check. ) @pytest.fixture(scope="module") def pool_mgr(): return urllib3.PoolManager(cert_reqs="CERT_NONE") def test_status_code(httpbin_both, tmpdir, verify_pool_mgr): """Ensure that we can read the status code""" url = httpbin_both.url with vcr.use_cassette(str(tmpdir.join("atts.yaml"))): status_code = verify_pool_mgr.request("GET", url).status with vcr.use_cassette(str(tmpdir.join("atts.yaml"))): assert status_code == verify_pool_mgr.request("GET", url).status def test_headers(tmpdir, httpbin_both, verify_pool_mgr): """Ensure that we can read the headers back""" url = httpbin_both.url with vcr.use_cassette(str(tmpdir.join("headers.yaml"))): headers = verify_pool_mgr.request("GET", url).headers with vcr.use_cassette(str(tmpdir.join("headers.yaml"))): new_headers = verify_pool_mgr.request("GET", url).headers assert sorted(get_headers(headers)) == sorted(get_headers(new_headers)) def test_body(tmpdir, httpbin_both, verify_pool_mgr): """Ensure the responses are all identical enough""" url = httpbin_both.url + "/bytes/1024" with vcr.use_cassette(str(tmpdir.join("body.yaml"))): content = verify_pool_mgr.request("GET", url).data with vcr.use_cassette(str(tmpdir.join("body.yaml"))): assert content == verify_pool_mgr.request("GET", url).data def test_auth(tmpdir, httpbin_both, verify_pool_mgr): """Ensure that we can handle basic auth""" auth = ("user", "passwd") headers = urllib3.util.make_headers(basic_auth="{}:{}".format(*auth)) url = httpbin_both.url + "/basic-auth/user/passwd" with vcr.use_cassette(str(tmpdir.join("auth.yaml"))): one = verify_pool_mgr.request("GET", url, headers=headers) with vcr.use_cassette(str(tmpdir.join("auth.yaml"))): two = verify_pool_mgr.request("GET", url, headers=headers) assert one.data == two.data assert one.status == two.status def test_auth_failed(tmpdir, httpbin_both, verify_pool_mgr): """Ensure that we can save failed auth statuses""" auth = ("user", "wrongwrongwrong") headers = urllib3.util.make_headers(basic_auth="{}:{}".format(*auth)) url = httpbin_both.url + "/basic-auth/user/passwd" with vcr.use_cassette(str(tmpdir.join("auth-failed.yaml"))) as cass: # Ensure that this is empty to begin with assert_cassette_empty(cass) one = verify_pool_mgr.request("GET", url, headers=headers) two = verify_pool_mgr.request("GET", url, headers=headers) assert one.data == two.data assert one.status == two.status == 401 def test_post(tmpdir, httpbin_both, verify_pool_mgr): """Ensure that we can post and cache the results""" data = {"key1": "value1", "key2": "value2"} url = httpbin_both.url + "/post" with vcr.use_cassette(str(tmpdir.join("verify_pool_mgr.yaml"))): req1 = verify_pool_mgr.request("POST", url, data).data with vcr.use_cassette(str(tmpdir.join("verify_pool_mgr.yaml"))): req2 = verify_pool_mgr.request("POST", url, data).data assert req1 == req2 @pytest.mark.online def test_redirects(tmpdir, verify_pool_mgr, httpbin): """Ensure that we can handle redirects""" url = httpbin.url + "/redirect/1" with vcr.use_cassette(str(tmpdir.join("verify_pool_mgr.yaml"))): content = verify_pool_mgr.request("GET", url).data with vcr.use_cassette(str(tmpdir.join("verify_pool_mgr.yaml"))) as cass: assert content == verify_pool_mgr.request("GET", url).data # Ensure that we've now cached *two* responses. One for the redirect # and one for the final fetch assert len(cass) == 2 assert cass.play_count == 2 def test_cross_scheme(tmpdir, httpbin, httpbin_secure, verify_pool_mgr): """Ensure that requests between schemes are treated separately""" # First fetch a url under http, and then again under https and then # ensure that we haven't served anything out of cache, and we have two # requests / response pairs in the cassette with vcr.use_cassette(str(tmpdir.join("cross_scheme.yaml"))) as cass: verify_pool_mgr.request("GET", httpbin_secure.url) verify_pool_mgr.request("GET", httpbin.url) assert cass.play_count == 0 assert len(cass) == 2 def test_gzip(tmpdir, httpbin_both, verify_pool_mgr): """ Ensure that requests (actually urllib3) is able to automatically decompress the response body """ url = httpbin_both.url + "/gzip" response = verify_pool_mgr.request("GET", url) with vcr.use_cassette(str(tmpdir.join("gzip.yaml"))): response = verify_pool_mgr.request("GET", url) assert_is_json_bytes(response.data) with vcr.use_cassette(str(tmpdir.join("gzip.yaml"))): assert_is_json_bytes(response.data) def test_https_with_cert_validation_disabled(tmpdir, httpbin_secure, pool_mgr): with vcr.use_cassette(str(tmpdir.join("cert_validation_disabled.yaml"))): pool_mgr.request("GET", httpbin_secure.url) def test_urllib3_force_reset(): conn = urllib3.connection http_original = conn.HTTPConnection https_original = conn.HTTPSConnection verified_https_original = conn.VerifiedHTTPSConnection with vcr.use_cassette(path="test"): first_cassette_HTTPConnection = conn.HTTPConnection first_cassette_HTTPSConnection = conn.HTTPSConnection first_cassette_VerifiedHTTPSConnection = conn.VerifiedHTTPSConnection with force_reset(): assert conn.HTTPConnection is http_original assert conn.HTTPSConnection is https_original assert conn.VerifiedHTTPSConnection is verified_https_original assert conn.HTTPConnection is first_cassette_HTTPConnection assert conn.HTTPSConnection is first_cassette_HTTPSConnection assert conn.VerifiedHTTPSConnection is first_cassette_VerifiedHTTPSConnection vcrpy-6.0.1/tests/integration/test_wild.py000066400000000000000000000067411455450430400207320ustar00rootroot00000000000000import http.client as httplib import multiprocessing from xmlrpc.client import ServerProxy from xmlrpc.server import SimpleXMLRPCServer import pytest import vcr requests = pytest.importorskip("requests") def test_domain_redirect(): """Ensure that redirects across domains are considered unique""" # In this example, seomoz.org redirects to moz.com, and if those # requests are considered identical, then we'll be stuck in a redirect # loop. url = "http://seomoz.org/" with vcr.use_cassette("tests/fixtures/wild/domain_redirect.yaml") as cass: requests.get(url, headers={"User-Agent": "vcrpy-test"}) # Ensure that we've now served two responses. One for the original # redirect, and a second for the actual fetch assert len(cass) == 2 def test_flickr_multipart_upload(httpbin, tmpdir): """ The python-flickr-api project does a multipart upload that confuses vcrpy """ def _pretend_to_be_flickr_library(): content_type, body = "text/plain", "HELLO WORLD" h = httplib.HTTPConnection(httpbin.host, httpbin.port) headers = {"Content-Type": content_type, "content-length": str(len(body))} h.request("POST", "/post/", headers=headers) h.send(body) r = h.getresponse() data = r.read() h.close() return data testfile = str(tmpdir.join("flickr.yml")) with vcr.use_cassette(testfile) as cass: _pretend_to_be_flickr_library() assert len(cass) == 1 with vcr.use_cassette(testfile) as cass: assert len(cass) == 1 _pretend_to_be_flickr_library() assert cass.play_count == 1 @pytest.mark.online def test_flickr_should_respond_with_200(tmpdir): testfile = str(tmpdir.join("flickr.yml")) with vcr.use_cassette(testfile): r = requests.post("https://api.flickr.com/services/upload", verify=False) assert r.status_code == 200 def test_cookies(tmpdir, httpbin): testfile = str(tmpdir.join("cookies.yml")) with vcr.use_cassette(testfile): with requests.Session() as s: s.get(httpbin.url + "/cookies/set?k1=v1&k2=v2") assert s.cookies.keys() == ["k1", "k2"] r2 = s.get(httpbin.url + "/cookies") assert sorted(r2.json()["cookies"].keys()) == ["k1", "k2"] @pytest.mark.online def test_amazon_doctype(tmpdir): # amazon gzips its homepage. For some reason, in requests 2.7, it's not # getting gunzipped. with vcr.use_cassette(str(tmpdir.join("amz.yml"))): r = requests.get("http://www.amazon.com", verify=False) assert "html" in r.text def start_rpc_server(q): httpd = SimpleXMLRPCServer(("127.0.0.1", 0)) httpd.register_function(pow) q.put("http://{}:{}".format(*httpd.server_address)) httpd.serve_forever() @pytest.fixture(scope="session") def rpc_server(): q = multiprocessing.Queue() proxy_process = multiprocessing.Process(target=start_rpc_server, args=(q,)) try: proxy_process.start() yield q.get() finally: proxy_process.terminate() def test_xmlrpclib(tmpdir, rpc_server): with vcr.use_cassette(str(tmpdir.join("xmlrpcvideo.yaml"))): roundup_server = ServerProxy(rpc_server, allow_none=True) original_schema = roundup_server.pow(2, 4) with vcr.use_cassette(str(tmpdir.join("xmlrpcvideo.yaml"))): roundup_server = ServerProxy(rpc_server, allow_none=True) second_schema = roundup_server.pow(2, 4) assert original_schema == second_schema vcrpy-6.0.1/tests/unit/000077500000000000000000000000001455450430400150065ustar00rootroot00000000000000vcrpy-6.0.1/tests/unit/test_cassettes.py000066400000000000000000000324621455450430400204240ustar00rootroot00000000000000import contextlib import copy import http.client as httplib import inspect import os from unittest import mock import pytest import yaml from vcr.cassette import Cassette from vcr.errors import UnhandledHTTPRequestError from vcr.patch import force_reset from vcr.stubs import VCRHTTPSConnection def test_cassette_load(tmpdir): a_file = tmpdir.join("test_cassette.yml") a_file.write( yaml.dump( { "interactions": [ { "request": {"body": "", "uri": "foo", "method": "GET", "headers": {}}, "response": "bar", }, ], }, ), ) a_cassette = Cassette.load(path=str(a_file)) assert len(a_cassette) == 1 def test_cassette_load_nonexistent(): a_cassette = Cassette.load(path="something/nonexistent.yml") assert len(a_cassette) == 0 def test_cassette_load_invalid_encoding(tmpdir): a_file = tmpdir.join("invalid_encoding.yml") with open(a_file, "wb") as fd: fd.write(b"\xda") a_cassette = Cassette.load(path=str(a_file)) assert len(a_cassette) == 0 def test_cassette_not_played(): a = Cassette("test") assert not a.play_count def test_cassette_append(): a = Cassette("test") a.append("foo", "bar") assert a.requests == ["foo"] assert a.responses == ["bar"] def test_cassette_len(): a = Cassette("test") a.append("foo", "bar") a.append("foo2", "bar2") assert len(a) == 2 def _mock_requests_match(request1, request2, matchers): return request1 == request2 @mock.patch("vcr.cassette.requests_match", _mock_requests_match) def test_cassette_contains(): a = Cassette("test") a.append("foo", "bar") assert "foo" in a @mock.patch("vcr.cassette.requests_match", _mock_requests_match) def test_cassette_responses_of(): a = Cassette("test") a.append("foo", "bar") assert a.responses_of("foo") == ["bar"] @mock.patch("vcr.cassette.requests_match", _mock_requests_match) def test_cassette_get_missing_response(): a = Cassette("test") with pytest.raises(UnhandledHTTPRequestError): a.responses_of("foo") @mock.patch("vcr.cassette.requests_match", _mock_requests_match) def test_cassette_cant_read_same_request_twice(): a = Cassette("test") a.append("foo", "bar") a.play_response("foo") with pytest.raises(UnhandledHTTPRequestError): a.play_response("foo") def make_get_request(): conn = httplib.HTTPConnection("www.python.org") conn.request("GET", "/index.html") return conn.getresponse() @mock.patch("vcr.cassette.requests_match", return_value=True) @mock.patch( "vcr.cassette.FilesystemPersister.load_cassette", classmethod(lambda *args, **kwargs: (("foo",), (mock.MagicMock(),))), ) @mock.patch("vcr.cassette.Cassette.can_play_response_for", return_value=True) @mock.patch("vcr.stubs.VCRHTTPResponse") def test_function_decorated_with_use_cassette_can_be_invoked_multiple_times(*args): decorated_function = Cassette.use(path="test")(make_get_request) for _ in range(4): decorated_function() def test_arg_getter_functionality(): arg_getter = mock.Mock(return_value={"path": "test"}) context_decorator = Cassette.use_arg_getter(arg_getter) with context_decorator as cassette: assert cassette._path == "test" arg_getter.return_value = {"path": "other"} with context_decorator as cassette: assert cassette._path == "other" arg_getter.return_value = {"path": "other", "filter_headers": ("header_name",)} @context_decorator def function(): pass with mock.patch.object(Cassette, "load", return_value=mock.MagicMock(inject=False)) as cassette_load: function() cassette_load.assert_called_once_with(**arg_getter.return_value) def test_cassette_not_all_played(): a = Cassette("test") a.append("foo", "bar") assert not a.all_played @mock.patch("vcr.cassette.requests_match", _mock_requests_match) def test_cassette_all_played(): a = Cassette("test") a.append("foo", "bar") a.play_response("foo") assert a.all_played @mock.patch("vcr.cassette.requests_match", _mock_requests_match) def test_cassette_allow_playback_repeats(): a = Cassette("test", allow_playback_repeats=True) a.append("foo", "bar") a.append("other", "resp") for _ in range(10): assert a.play_response("foo") == "bar" assert a.play_count == 10 assert a.all_played is False assert a.play_response("other") == "resp" assert a.play_count == 11 assert a.all_played a.allow_playback_repeats = False with pytest.raises(UnhandledHTTPRequestError) as e: a.play_response("foo") assert str(e.value) == "\"The cassette ('test') doesn't contain the request ('foo') asked for\"" a.rewind() assert a.all_played is False assert a.play_response("foo") == "bar" assert a.all_played is False assert a.play_response("other") == "resp" assert a.all_played @mock.patch("vcr.cassette.requests_match", _mock_requests_match) def test_cassette_rewound(): a = Cassette("test") a.append("foo", "bar") a.play_response("foo") assert a.all_played a.rewind() assert not a.all_played def test_before_record_response(): before_record_response = mock.Mock(return_value="mutated") cassette = Cassette("test", before_record_response=before_record_response) cassette.append("req", "res") before_record_response.assert_called_once_with("res") assert cassette.responses[0] == "mutated" def assert_get_response_body_is(value): conn = httplib.HTTPConnection("www.python.org") conn.request("GET", "/index.html") assert conn.getresponse().read().decode("utf8") == value @mock.patch("vcr.cassette.requests_match", _mock_requests_match) @mock.patch("vcr.cassette.Cassette.can_play_response_for", return_value=True) @mock.patch("vcr.cassette.Cassette._save", return_value=True) def test_nesting_cassette_context_managers(*args): first_response = { "body": {"string": b"first_response"}, "headers": {}, "status": {"message": "m", "code": 200}, } second_response = copy.deepcopy(first_response) second_response["body"]["string"] = b"second_response" with contextlib.ExitStack() as exit_stack: first_cassette = exit_stack.enter_context(Cassette.use(path="test")) exit_stack.enter_context( mock.patch.object(first_cassette, "play_response", return_value=first_response), ) assert_get_response_body_is("first_response") # Make sure a second cassette can supersede the first with Cassette.use(path="test") as second_cassette: with mock.patch.object(second_cassette, "play_response", return_value=second_response): assert_get_response_body_is("second_response") # Now the first cassette should be back in effect assert_get_response_body_is("first_response") def test_nesting_context_managers_by_checking_references_of_http_connection(): original = httplib.HTTPConnection with Cassette.use(path="test"): first_cassette_HTTPConnection = httplib.HTTPConnection with Cassette.use(path="test"): second_cassette_HTTPConnection = httplib.HTTPConnection assert second_cassette_HTTPConnection is not first_cassette_HTTPConnection with Cassette.use(path="test"): assert httplib.HTTPConnection is not second_cassette_HTTPConnection with force_reset(): assert httplib.HTTPConnection is original assert httplib.HTTPConnection is second_cassette_HTTPConnection assert httplib.HTTPConnection is first_cassette_HTTPConnection def test_custom_patchers(): class Test: attribute = None with Cassette.use(path="custom_patches", custom_patches=((Test, "attribute", VCRHTTPSConnection),)): assert issubclass(Test.attribute, VCRHTTPSConnection) assert VCRHTTPSConnection is not Test.attribute old_attribute = Test.attribute with Cassette.use(path="custom_patches", custom_patches=((Test, "attribute", VCRHTTPSConnection),)): assert issubclass(Test.attribute, VCRHTTPSConnection) assert VCRHTTPSConnection is not Test.attribute assert Test.attribute is not old_attribute assert issubclass(Test.attribute, VCRHTTPSConnection) assert VCRHTTPSConnection is not Test.attribute assert Test.attribute is old_attribute def test_decorated_functions_are_reentrant(): info = {"second": False} original_conn = httplib.HTTPConnection @Cassette.use(path="whatever", inject=True) def test_function(cassette): if info["second"]: assert httplib.HTTPConnection is not info["first_conn"] else: info["first_conn"] = httplib.HTTPConnection info["second"] = True test_function() assert httplib.HTTPConnection is info["first_conn"] test_function() assert httplib.HTTPConnection is original_conn def test_cassette_use_called_without_path_uses_function_to_generate_path(): @Cassette.use(inject=True) def function_name(cassette): assert cassette._path == "function_name" function_name() def test_path_transformer_with_function_path(): def path_transformer(path): return os.path.join("a", path) @Cassette.use(inject=True, path_transformer=path_transformer) def function_name(cassette): assert cassette._path == os.path.join("a", "function_name") function_name() def test_path_transformer_with_context_manager(): with Cassette.use(path="b", path_transformer=lambda *args: "a") as cassette: assert cassette._path == "a" def test_path_transformer_None(): with Cassette.use(path="a", path_transformer=None) as cassette: assert cassette._path == "a" def test_func_path_generator(): def generator(function): return os.path.join(os.path.dirname(inspect.getfile(function)), function.__name__) @Cassette.use(inject=True, func_path_generator=generator) def function_name(cassette): assert cassette._path == os.path.join(os.path.dirname(__file__), "function_name") function_name() def test_use_as_decorator_on_coroutine(): original_http_connection = httplib.HTTPConnection @Cassette.use(inject=True) def test_function(cassette): assert httplib.HTTPConnection.cassette is cassette assert httplib.HTTPConnection is not original_http_connection value = yield 1 assert value == 1 assert httplib.HTTPConnection.cassette is cassette assert httplib.HTTPConnection is not original_http_connection value = yield 2 assert value == 2 coroutine = test_function() value = next(coroutine) while True: try: value = coroutine.send(value) except StopIteration: break def test_use_as_decorator_on_generator(): original_http_connection = httplib.HTTPConnection @Cassette.use(inject=True) def test_function(cassette): assert httplib.HTTPConnection.cassette is cassette assert httplib.HTTPConnection is not original_http_connection yield 1 assert httplib.HTTPConnection.cassette is cassette assert httplib.HTTPConnection is not original_http_connection yield 2 assert list(test_function()) == [1, 2] @mock.patch("vcr.cassette.get_matchers_results") def test_find_requests_with_most_matches_one_similar_request(mock_get_matchers_results): mock_get_matchers_results.side_effect = [ (["method"], [("path", "failed : path"), ("query", "failed : query")]), (["method", "path"], [("query", "failed : query")]), ([], [("method", "failed : method"), ("path", "failed : path"), ("query", "failed : query")]), ] cassette = Cassette("test") for request in range(1, 4): cassette.append(request, "response") result = cassette.find_requests_with_most_matches("fake request") assert result == [(2, ["method", "path"], [("query", "failed : query")])] @mock.patch("vcr.cassette.get_matchers_results") def test_find_requests_with_most_matches_no_similar_requests(mock_get_matchers_results): mock_get_matchers_results.side_effect = [ ([], [("path", "failed : path"), ("query", "failed : query")]), ([], [("path", "failed : path"), ("query", "failed : query")]), ([], [("path", "failed : path"), ("query", "failed : query")]), ] cassette = Cassette("test") for request in range(1, 4): cassette.append(request, "response") result = cassette.find_requests_with_most_matches("fake request") assert result == [] @mock.patch("vcr.cassette.get_matchers_results") def test_find_requests_with_most_matches_many_similar_requests(mock_get_matchers_results): mock_get_matchers_results.side_effect = [ (["method", "path"], [("query", "failed : query")]), (["method"], [("path", "failed : path"), ("query", "failed : query")]), (["method", "path"], [("query", "failed : query")]), ] cassette = Cassette("test") for request in range(1, 4): cassette.append(request, "response") result = cassette.find_requests_with_most_matches("fake request") assert result == [ (1, ["method", "path"], [("query", "failed : query")]), (3, ["method", "path"], [("query", "failed : query")]), ] vcrpy-6.0.1/tests/unit/test_errors.py000066400000000000000000000052001455450430400177300ustar00rootroot00000000000000from unittest import mock import pytest from vcr import errors from vcr.cassette import Cassette @mock.patch("vcr.cassette.Cassette.find_requests_with_most_matches") @pytest.mark.parametrize( "most_matches, expected_message", [ # No request match found ([], "No similar requests, that have not been played, found."), # One matcher failed ( [("similar request", ["method", "path"], [("query", "failed : query")])], "Found 1 similar requests with 1 different matcher(s) :\n" "\n1 - ('similar request').\n" "Matchers succeeded : ['method', 'path']\n" "Matchers failed :\n" "query - assertion failure :\n" "failed : query\n", ), # Multiple failed matchers ( [("similar request", ["method"], [("query", "failed : query"), ("path", "failed : path")])], "Found 1 similar requests with 2 different matcher(s) :\n" "\n1 - ('similar request').\n" "Matchers succeeded : ['method']\n" "Matchers failed :\n" "query - assertion failure :\n" "failed : query\n" "path - assertion failure :\n" "failed : path\n", ), # Multiple similar requests ( [ ("similar request", ["method"], [("query", "failed : query")]), ("similar request 2", ["method"], [("query", "failed : query 2")]), ], "Found 2 similar requests with 1 different matcher(s) :\n" "\n1 - ('similar request').\n" "Matchers succeeded : ['method']\n" "Matchers failed :\n" "query - assertion failure :\n" "failed : query\n" "\n2 - ('similar request 2').\n" "Matchers succeeded : ['method']\n" "Matchers failed :\n" "query - assertion failure :\n" "failed : query 2\n", ), ], ) def test_CannotOverwriteExistingCassetteException_get_message( mock_find_requests_with_most_matches, most_matches, expected_message, ): mock_find_requests_with_most_matches.return_value = most_matches cassette = Cassette("path") failed_request = "request" exception_message = errors.CannotOverwriteExistingCassetteException._get_message(cassette, "request") expected = ( f"Can't overwrite existing cassette ({cassette._path!r}) " f"in your current record mode ({cassette.record_mode!r}).\n" f"No match for the request ({failed_request!r}) was found.\n" f"{expected_message}" ) assert exception_message == expected vcrpy-6.0.1/tests/unit/test_filters.py000066400000000000000000000301011455450430400200620ustar00rootroot00000000000000import gzip import json import zlib from io import BytesIO from unittest import mock from vcr.filters import ( decode_response, remove_headers, remove_post_data_parameters, remove_query_parameters, replace_headers, replace_post_data_parameters, replace_query_parameters, ) from vcr.request import Request def test_replace_headers(): # This tests all of: # 1. keeping a header # 2. removing a header # 3. replacing a header # 4. replacing a header using a callable # 5. removing a header using a callable # 6. replacing a header that doesn't exist headers = {"one": ["keep"], "two": ["lose"], "three": ["change"], "four": ["shout"], "five": ["whisper"]} request = Request("GET", "http://google.com", "", headers) replace_headers( request, [ ("two", None), ("three", "tada"), ("four", lambda key, value, request: value.upper()), ("five", lambda key, value, request: None), ("six", "doesntexist"), ], ) assert request.headers == {"one": "keep", "three": "tada", "four": "SHOUT"} def test_replace_headers_empty(): headers = {"hello": "goodbye", "secret": "header"} request = Request("GET", "http://google.com", "", headers) replace_headers(request, []) assert request.headers == headers def test_replace_headers_callable(): # This goes beyond test_replace_headers() to ensure that the callable # receives the expected arguments. headers = {"hey": "there"} request = Request("GET", "http://google.com", "", headers) callme = mock.Mock(return_value="ho") replace_headers(request, [("hey", callme)]) assert request.headers == {"hey": "ho"} assert callme.call_args == ((), {"request": request, "key": "hey", "value": "there"}) def test_remove_headers(): # Test the backward-compatible API wrapper. headers = {"hello": ["goodbye"], "secret": ["header"]} request = Request("GET", "http://google.com", "", headers) remove_headers(request, ["secret"]) assert request.headers == {"hello": "goodbye"} def test_replace_query_parameters(): # This tests all of: # 1. keeping a parameter # 2. removing a parameter # 3. replacing a parameter # 4. replacing a parameter using a callable # 5. removing a parameter using a callable # 6. replacing a parameter that doesn't exist uri = "http://g.com/?one=keep&two=lose&three=change&four=shout&five=whisper" request = Request("GET", uri, "", {}) replace_query_parameters( request, [ ("two", None), ("three", "tada"), ("four", lambda key, value, request: value.upper()), ("five", lambda key, value, request: None), ("six", "doesntexist"), ], ) assert request.query == [("four", "SHOUT"), ("one", "keep"), ("three", "tada")] def test_remove_all_query_parameters(): uri = "http://g.com/?q=cowboys&w=1" request = Request("GET", uri, "", {}) replace_query_parameters(request, [("w", None), ("q", None)]) assert request.uri == "http://g.com/" def test_replace_query_parameters_callable(): # This goes beyond test_replace_query_parameters() to ensure that the # callable receives the expected arguments. uri = "http://g.com/?hey=there" request = Request("GET", uri, "", {}) callme = mock.Mock(return_value="ho") replace_query_parameters(request, [("hey", callme)]) assert request.uri == "http://g.com/?hey=ho" assert callme.call_args == ((), {"request": request, "key": "hey", "value": "there"}) def test_remove_query_parameters(): # Test the backward-compatible API wrapper. uri = "http://g.com/?q=cowboys&w=1" request = Request("GET", uri, "", {}) remove_query_parameters(request, ["w"]) assert request.uri == "http://g.com/?q=cowboys" def test_replace_post_data_parameters(): # This tests all of: # 1. keeping a parameter # 2. removing a parameter # 3. replacing a parameter # 4. replacing a parameter using a callable # 5. removing a parameter using a callable # 6. replacing a parameter that doesn't exist body = b"one=keep&two=lose&three=change&four=shout&five=whisper" request = Request("POST", "http://google.com", body, {}) replace_post_data_parameters( request, [ ("two", None), ("three", "tada"), ("four", lambda key, value, request: value.upper()), ("five", lambda key, value, request: None), ("six", "doesntexist"), ], ) assert request.body == b"one=keep&three=tada&four=SHOUT" def test_replace_post_data_parameters_empty_body(): # This test ensures replace_post_data_parameters doesn't throw exception when body is empty. body = None request = Request("POST", "http://google.com", body, {}) replace_post_data_parameters( request, [ ("two", None), ("three", "tada"), ("four", lambda key, value, request: value.upper()), ("five", lambda key, value, request: None), ("six", "doesntexist"), ], ) assert request.body is None def test_remove_post_data_parameters(): # Test the backward-compatible API wrapper. body = b"id=secret&foo=bar" request = Request("POST", "http://google.com", body, {}) remove_post_data_parameters(request, ["id"]) assert request.body == b"foo=bar" def test_preserve_multiple_post_data_parameters(): body = b"id=secret&foo=bar&foo=baz" request = Request("POST", "http://google.com", body, {}) replace_post_data_parameters(request, [("id", None)]) assert request.body == b"foo=bar&foo=baz" def test_remove_all_post_data_parameters(): body = b"id=secret&foo=bar" request = Request("POST", "http://google.com", body, {}) replace_post_data_parameters(request, [("id", None), ("foo", None)]) assert request.body == b"" def test_replace_json_post_data_parameters(): # This tests all of: # 1. keeping a parameter # 2. removing a parameter # 3. replacing a parameter # 4. replacing a parameter using a callable # 5. removing a parameter using a callable # 6. replacing a parameter that doesn't exist body = b'{"one": "keep", "two": "lose", "three": "change", "four": "shout", "five": "whisper"}' request = Request("POST", "http://google.com", body, {}) request.headers["Content-Type"] = "application/json" replace_post_data_parameters( request, [ ("two", None), ("three", "tada"), ("four", lambda key, value, request: value.upper()), ("five", lambda key, value, request: None), ("six", "doesntexist"), ], ) request_data = json.loads(request.body) expected_data = json.loads('{"one": "keep", "three": "tada", "four": "SHOUT"}') assert request_data == expected_data def test_remove_json_post_data_parameters(): # Test the backward-compatible API wrapper. body = b'{"id": "secret", "foo": "bar", "baz": "qux"}' request = Request("POST", "http://google.com", body, {}) request.headers["Content-Type"] = "application/json" remove_post_data_parameters(request, ["id"]) request_body_json = json.loads(request.body) expected_json = json.loads(b'{"foo": "bar", "baz": "qux"}') assert request_body_json == expected_json def test_remove_all_json_post_data_parameters(): body = b'{"id": "secret", "foo": "bar"}' request = Request("POST", "http://google.com", body, {}) request.headers["Content-Type"] = "application/json" replace_post_data_parameters(request, [("id", None), ("foo", None)]) assert request.body == b"{}" def test_replace_dict_post_data_parameters(): # This tests all of: # 1. keeping a parameter # 2. removing a parameter # 3. replacing a parameter # 4. replacing a parameter using a callable # 5. removing a parameter using a callable # 6. replacing a parameter that doesn't exist body = {"one": "keep", "two": "lose", "three": "change", "four": "shout", "five": "whisper"} request = Request("POST", "http://google.com", body, {}) request.headers["Content-Type"] = "application/x-www-form-urlencoded" replace_post_data_parameters( request, [ ("two", None), ("three", "tada"), ("four", lambda key, value, request: value.upper()), ("five", lambda key, value, request: None), ("six", "doesntexist"), ], ) expected_data = {"one": "keep", "three": "tada", "four": "SHOUT"} assert request.body == expected_data def test_remove_dict_post_data_parameters(): # Test the backward-compatible API wrapper. body = {"id": "secret", "foo": "bar", "baz": "qux"} request = Request("POST", "http://google.com", body, {}) request.headers["Content-Type"] = "application/x-www-form-urlencoded" remove_post_data_parameters(request, ["id"]) expected_data = {"foo": "bar", "baz": "qux"} assert request.body == expected_data def test_remove_all_dict_post_data_parameters(): body = {"id": "secret", "foo": "bar"} request = Request("POST", "http://google.com", body, {}) request.headers["Content-Type"] = "application/x-www-form-urlencoded" replace_post_data_parameters(request, [("id", None), ("foo", None)]) assert request.body == {} def test_decode_response_uncompressed(): recorded_response = { "status": {"message": "OK", "code": 200}, "headers": { "content-length": ["10806"], "date": ["Fri, 24 Oct 2014 18:35:37 GMT"], "content-type": ["text/html; charset=utf-8"], }, "body": {"string": b""}, } assert decode_response(recorded_response) == recorded_response def test_decode_response_deflate(): body = b"deflate message" deflate_response = { "body": {"string": zlib.compress(body)}, "headers": { "access-control-allow-credentials": ["true"], "access-control-allow-origin": ["*"], "connection": ["keep-alive"], "content-encoding": ["deflate"], "content-length": ["177"], "content-type": ["application/json"], "date": ["Wed, 02 Dec 2015 19:44:32 GMT"], "server": ["nginx"], }, "status": {"code": 200, "message": "OK"}, } decoded_response = decode_response(deflate_response) assert decoded_response["body"]["string"] == body assert decoded_response["headers"]["content-length"] == [str(len(body))] def test_decode_response_deflate_already_decompressed(): body = b"deflate message" gzip_response = { "body": {"string": body}, "headers": { "content-encoding": ["deflate"], }, } decoded_response = decode_response(gzip_response) assert decoded_response["body"]["string"] == body def test_decode_response_gzip(): body = b"gzip message" buf = BytesIO() f = gzip.GzipFile("a", fileobj=buf, mode="wb") f.write(body) f.close() compressed_body = buf.getvalue() buf.close() gzip_response = { "body": {"string": compressed_body}, "headers": { "access-control-allow-credentials": ["true"], "access-control-allow-origin": ["*"], "connection": ["keep-alive"], "content-encoding": ["gzip"], "content-length": ["177"], "content-type": ["application/json"], "date": ["Wed, 02 Dec 2015 19:44:32 GMT"], "server": ["nginx"], }, "status": {"code": 200, "message": "OK"}, } decoded_response = decode_response(gzip_response) assert decoded_response["body"]["string"] == body assert decoded_response["headers"]["content-length"] == [str(len(body))] def test_decode_response_gzip_already_decompressed(): body = b"gzip message" gzip_response = { "body": {"string": body}, "headers": { "content-encoding": ["gzip"], }, } decoded_response = decode_response(gzip_response) assert decoded_response["body"]["string"] == body vcrpy-6.0.1/tests/unit/test_json_serializer.py000066400000000000000000000011431455450430400216200ustar00rootroot00000000000000import pytest from vcr.request import Request from vcr.serializers.jsonserializer import serialize def test_serialize_binary(): request = Request(method="GET", uri="http://localhost/", body="", headers={}) cassette = {"requests": [request], "responses": [{"body": b"\x8c"}]} with pytest.raises(Exception) as e: serialize(cassette) assert ( e.message == "Error serializing cassette to JSON. Does this \ HTTP interaction contain binary data? If so, use a different \ serializer (like the yaml serializer) for this request" ) vcrpy-6.0.1/tests/unit/test_matchers.py000066400000000000000000000270111455450430400202260ustar00rootroot00000000000000import itertools from unittest import mock import pytest from vcr import matchers, request # the dict contains requests with corresponding to its key difference # with 'base' request. REQUESTS = { "base": request.Request("GET", "http://host.com/p?a=b", "", {}), "method": request.Request("POST", "http://host.com/p?a=b", "", {}), "scheme": request.Request("GET", "https://host.com:80/p?a=b", "", {}), "host": request.Request("GET", "http://another-host.com/p?a=b", "", {}), "port": request.Request("GET", "http://host.com:90/p?a=b", "", {}), "path": request.Request("GET", "http://host.com/x?a=b", "", {}), "query": request.Request("GET", "http://host.com/p?c=d", "", {}), } def assert_matcher(matcher_name): matcher = getattr(matchers, matcher_name) for k1, k2 in itertools.permutations(REQUESTS, 2): expecting_assertion_error = matcher_name in {k1, k2} if expecting_assertion_error: with pytest.raises(AssertionError): matcher(REQUESTS[k1], REQUESTS[k2]) else: assert matcher(REQUESTS[k1], REQUESTS[k2]) is None def test_uri_matcher(): for k1, k2 in itertools.permutations(REQUESTS, 2): expecting_assertion_error = {k1, k2} != {"base", "method"} if expecting_assertion_error: with pytest.raises(AssertionError): matchers.uri(REQUESTS[k1], REQUESTS[k2]) else: assert matchers.uri(REQUESTS[k1], REQUESTS[k2]) is None req1_body = ( b"test" b"" b"a1" b"b2" b"" ) req2_body = ( b"test" b"" b"b2" b"a1" b"" ) boto3_bytes_headers = { "X-Amz-Content-SHA256": b"UNSIGNED-PAYLOAD", "Cache-Control": b"max-age=31536000, public", "X-Amz-Date": b"20191102T143910Z", "User-Agent": b"Boto3/1.9.102 Python/3.5.3 Linux/4.15.0-54-generic Botocore/1.12.253 Resource", "Content-MD5": b"GQqjEXsRqrPyxfTl99nkAg==", "Content-Type": b"text/plain", "Expect": b"100-continue", "Content-Length": "21", } chunked_headers = { "Transfer-Encoding": "chunked", } @pytest.mark.parametrize( "r1, r2", [ ( request.Request("POST", "http://host.com/", "123", {}), request.Request("POST", "http://another-host.com/", "123", {"Some-Header": "value"}), ), ( request.Request( "POST", "http://host.com/", "a=1&b=2", {"Content-Type": "application/x-www-form-urlencoded"}, ), request.Request( "POST", "http://host.com/", "b=2&a=1", {"Content-Type": "application/x-www-form-urlencoded"}, ), ), ( request.Request("POST", "http://host.com/", "123", {}), request.Request("POST", "http://another-host.com/", "123", {"Some-Header": "value"}), ), ( request.Request( "POST", "http://host.com/", "a=1&b=2", {"Content-Type": "application/x-www-form-urlencoded"}, ), request.Request( "POST", "http://host.com/", "b=2&a=1", {"Content-Type": "application/x-www-form-urlencoded"}, ), ), ( request.Request( "POST", "http://host.com/", '{"a": 1, "b": 2}', {"Content-Type": "application/json"}, ), request.Request( "POST", "http://host.com/", '{"b": 2, "a": 1}', {"content-type": "application/json"}, ), ), ( request.Request( "POST", "http://host.com/", req1_body, {"User-Agent": "xmlrpclib", "Content-Type": "text/xml"}, ), request.Request( "POST", "http://host.com/", req2_body, {"user-agent": "somexmlrpc", "content-type": "text/xml"}, ), ), ( request.Request( "POST", "http://host.com/", '{"a": 1, "b": 2}', {"Content-Type": "application/json"}, ), request.Request( "POST", "http://host.com/", '{"b": 2, "a": 1}', {"content-type": "application/json"}, ), ), ( # special case for boto3 bytes headers request.Request("POST", "http://aws.custom.com/", b"123", boto3_bytes_headers), request.Request("POST", "http://aws.custom.com/", b"123", boto3_bytes_headers), ), ( # chunked transfer encoding: decoded bytes versus encoded bytes request.Request("POST", "scheme1://host1.test/", b"123456789_123456", chunked_headers), request.Request( "GET", "scheme2://host2.test/", b"10\r\n123456789_123456\r\n0\r\n\r\n", chunked_headers, ), ), ( # chunked transfer encoding: bytes iterator versus string iterator request.Request( "POST", "scheme1://host1.test/", iter([b"123456789_", b"123456"]), chunked_headers, ), request.Request("GET", "scheme2://host2.test/", iter(["123456789_", "123456"]), chunked_headers), ), ( # chunked transfer encoding: bytes iterator versus single byte iterator request.Request( "POST", "scheme1://host1.test/", iter([b"123456789_", b"123456"]), chunked_headers, ), request.Request("GET", "scheme2://host2.test/", iter(b"123456789_123456"), chunked_headers), ), ], ) def test_body_matcher_does_match(r1, r2): assert matchers.body(r1, r2) is None @pytest.mark.parametrize( "r1, r2", [ ( request.Request("POST", "http://host.com/", '{"a": 1, "b": 2}', {}), request.Request("POST", "http://host.com/", '{"b": 2, "a": 1}', {}), ), ( request.Request( "POST", "http://host.com/", '{"a": 1, "b": 3}', {"Content-Type": "application/json"}, ), request.Request( "POST", "http://host.com/", '{"b": 2, "a": 1}', {"content-type": "application/json"}, ), ), ( request.Request("POST", "http://host.com/", req1_body, {"Content-Type": "text/xml"}), request.Request("POST", "http://host.com/", req2_body, {"content-type": "text/xml"}), ), ], ) def test_body_match_does_not_match(r1, r2): with pytest.raises(AssertionError): matchers.body(r1, r2) def test_query_matcher(): req1 = request.Request("GET", "http://host.com/?a=b&c=d", "", {}) req2 = request.Request("GET", "http://host.com/?c=d&a=b", "", {}) assert matchers.query(req1, req2) is None req1 = request.Request("GET", "http://host.com/?a=b&a=b&c=d", "", {}) req2 = request.Request("GET", "http://host.com/?a=b&c=d&a=b", "", {}) req3 = request.Request("GET", "http://host.com/?c=d&a=b&a=b", "", {}) assert matchers.query(req1, req2) is None assert matchers.query(req1, req3) is None def test_matchers(): assert_matcher("method") assert_matcher("scheme") assert_matcher("host") assert_matcher("port") assert_matcher("path") assert_matcher("query") def test_evaluate_matcher_does_match(): def bool_matcher(r1, r2): return True def assertion_matcher(r1, r2): assert 1 == 1 r1, r2 = None, None for matcher in [bool_matcher, assertion_matcher]: match, assertion_msg = matchers._evaluate_matcher(matcher, r1, r2) assert match is True assert assertion_msg is None def test_evaluate_matcher_does_not_match(): def bool_matcher(r1, r2): return False def assertion_matcher(r1, r2): # This is like the "assert" statement preventing pytest to recompile it raise AssertionError() r1, r2 = None, None for matcher in [bool_matcher, assertion_matcher]: match, assertion_msg = matchers._evaluate_matcher(matcher, r1, r2) assert match is False assert not assertion_msg def test_evaluate_matcher_does_not_match_with_assert_message(): def assertion_matcher(r1, r2): # This is like the "assert" statement preventing pytest to recompile it raise AssertionError("Failing matcher") r1, r2 = None, None match, assertion_msg = matchers._evaluate_matcher(assertion_matcher, r1, r2) assert match is False assert assertion_msg == "Failing matcher" def test_get_assertion_message(): assert matchers.get_assertion_message(None) is None assert matchers.get_assertion_message("") == "" def test_get_assertion_message_with_details(): assertion_msg = "q1=1 != q2=1" expected = assertion_msg assert matchers.get_assertion_message(assertion_msg) == expected @pytest.mark.parametrize( "r1, r2, expected_successes, expected_failures", [ ( request.Request("GET", "http://host.com/p?a=b", "", {}), request.Request("GET", "http://host.com/p?a=b", "", {}), ["method", "path"], [], ), ( request.Request("GET", "http://host.com/p?a=b", "", {}), request.Request("POST", "http://host.com/p?a=b", "", {}), ["path"], ["method"], ), ( request.Request("GET", "http://host.com/p?a=b", "", {}), request.Request("POST", "http://host.com/path?a=b", "", {}), [], ["method", "path"], ), ], ) def test_get_matchers_results(r1, r2, expected_successes, expected_failures): successes, failures = matchers.get_matchers_results(r1, r2, [matchers.method, matchers.path]) assert successes == expected_successes assert len(failures) == len(expected_failures) for i, expected_failure in enumerate(expected_failures): assert failures[i][0] == expected_failure assert failures[i][1] is not None @mock.patch("vcr.matchers.get_matchers_results") @pytest.mark.parametrize( "successes, failures, expected_match", [(["method", "path"], [], True), (["method"], ["path"], False), ([], ["method", "path"], False)], ) def test_requests_match(mock_get_matchers_results, successes, failures, expected_match): mock_get_matchers_results.return_value = (successes, failures) r1 = request.Request("GET", "http://host.com/p?a=b", "", {}) r2 = request.Request("GET", "http://host.com/p?a=b", "", {}) match = matchers.requests_match(r1, r2, [matchers.method, matchers.path]) assert match is expected_match vcrpy-6.0.1/tests/unit/test_migration.py000066400000000000000000000030401455450430400204050ustar00rootroot00000000000000import filecmp import json import shutil import yaml import vcr.migration # Use the libYAML versions if possible try: from yaml import CLoader as Loader except ImportError: from yaml import Loader def test_try_migrate_with_json(tmpdir): cassette = tmpdir.join("cassette.json").strpath shutil.copy("tests/fixtures/migration/old_cassette.json", cassette) assert vcr.migration.try_migrate(cassette) with open("tests/fixtures/migration/new_cassette.json") as f: expected_json = json.load(f) with open(cassette) as f: actual_json = json.load(f) assert actual_json == expected_json def test_try_migrate_with_yaml(tmpdir): cassette = tmpdir.join("cassette.yaml").strpath shutil.copy("tests/fixtures/migration/old_cassette.yaml", cassette) assert vcr.migration.try_migrate(cassette) with open("tests/fixtures/migration/new_cassette.yaml") as f: expected_yaml = yaml.load(f, Loader=Loader) with open(cassette) as f: actual_yaml = yaml.load(f, Loader=Loader) assert actual_yaml == expected_yaml def test_try_migrate_with_invalid_or_new_cassettes(tmpdir): cassette = tmpdir.join("cassette").strpath files = [ "tests/fixtures/migration/not_cassette.txt", "tests/fixtures/migration/new_cassette.yaml", "tests/fixtures/migration/new_cassette.json", ] for file_path in files: shutil.copy(file_path, cassette) assert not vcr.migration.try_migrate(cassette) assert filecmp.cmp(cassette, file_path) # should not change file vcrpy-6.0.1/tests/unit/test_persist.py000066400000000000000000000020531455450430400201100ustar00rootroot00000000000000import pytest from vcr.persisters.filesystem import FilesystemPersister from vcr.serializers import jsonserializer, yamlserializer @pytest.mark.parametrize( "cassette_path, serializer", [ ("tests/fixtures/migration/old_cassette.json", jsonserializer), ("tests/fixtures/migration/old_cassette.yaml", yamlserializer), ], ) def test_load_cassette_with_old_cassettes(cassette_path, serializer): with pytest.raises(ValueError) as excinfo: FilesystemPersister.load_cassette(cassette_path, serializer) assert "run the migration script" in excinfo.exconly() @pytest.mark.parametrize( "cassette_path, serializer", [ ("tests/fixtures/migration/not_cassette.txt", jsonserializer), ("tests/fixtures/migration/not_cassette.txt", yamlserializer), ], ) def test_load_cassette_with_invalid_cassettes(cassette_path, serializer): with pytest.raises(Exception) as excinfo: FilesystemPersister.load_cassette(cassette_path, serializer) assert "run the migration script" not in excinfo.exconly() vcrpy-6.0.1/tests/unit/test_request.py000066400000000000000000000046471455450430400201220ustar00rootroot00000000000000import pytest from vcr.request import HeadersDict, Request @pytest.mark.parametrize( "method, uri, expected_str", [ ("GET", "http://www.google.com/", ""), ("OPTIONS", "*", ""), ("CONNECT", "host.some.where:1234", ""), ], ) def test_str(method, uri, expected_str): assert str(Request(method, uri, "", {})) == expected_str def test_headers(): headers = {"X-Header1": ["h1"], "X-Header2": "h2"} req = Request("GET", "http://go.com/", "", headers) assert req.headers == {"X-Header1": "h1", "X-Header2": "h2"} req.headers["X-Header1"] = "h11" assert req.headers == {"X-Header1": "h11", "X-Header2": "h2"} def test_add_header_deprecated(): req = Request("GET", "http://go.com/", "", {}) pytest.deprecated_call(req.add_header, "foo", "bar") assert req.headers == {"foo": "bar"} @pytest.mark.parametrize( "uri, expected_port", [ ("http://go.com/", 80), ("http://go.com:80/", 80), ("http://go.com:3000/", 3000), ("https://go.com/", 443), ("https://go.com:443/", 443), ("https://go.com:3000/", 3000), ("*", None), ], ) def test_port(uri, expected_port): req = Request("GET", uri, "", {}) assert req.port == expected_port @pytest.mark.parametrize( "method, uri", [ ("GET", "http://go.com/"), ("GET", "http://go.com:80/"), ("CONNECT", "localhost:1234"), ("OPTIONS", "*"), ], ) def test_uri(method, uri): assert Request(method, uri, "", {}).uri == uri def test_HeadersDict(): # Simple test of CaseInsensitiveDict h = HeadersDict() assert h == {} h["Content-Type"] = "application/json" assert h == {"Content-Type": "application/json"} assert h["content-type"] == "application/json" assert h["CONTENT-TYPE"] == "application/json" # Test feature of HeadersDict: devolve list to first element h = HeadersDict() assert h == {} h["x"] = ["foo", "bar"] assert h == {"x": "foo"} # Test feature of HeadersDict: preserve original key case h = HeadersDict() assert h == {} h["Content-Type"] = "application/json" assert h == {"Content-Type": "application/json"} h["content-type"] = "text/plain" assert h == {"Content-Type": "text/plain"} h["CONtent-tyPE"] = "whoa" assert h == {"Content-Type": "whoa"} vcrpy-6.0.1/tests/unit/test_response.py000066400000000000000000000070211455450430400202550ustar00rootroot00000000000000import io from vcr.stubs import VCRHTTPResponse def test_response_should_have_headers_field(): recorded_response = { "status": {"message": "OK", "code": 200}, "headers": { "content-length": ["0"], "server": ["gunicorn/18.0"], "connection": ["Close"], "access-control-allow-credentials": ["true"], "date": ["Fri, 24 Oct 2014 18:35:37 GMT"], "access-control-allow-origin": ["*"], "content-type": ["text/html; charset=utf-8"], }, "body": {"string": b""}, } response = VCRHTTPResponse(recorded_response) assert response.headers is not None def test_response_headers_should_be_equal_to_msg(): recorded_response = { "status": {"message": b"OK", "code": 200}, "headers": { "content-length": ["0"], "server": ["gunicorn/18.0"], "connection": ["Close"], "content-type": ["text/html; charset=utf-8"], }, "body": {"string": b""}, } response = VCRHTTPResponse(recorded_response) assert response.headers == response.msg def test_response_headers_should_have_correct_values(): recorded_response = { "status": {"message": "OK", "code": 200}, "headers": { "content-length": ["10806"], "date": ["Fri, 24 Oct 2014 18:35:37 GMT"], "content-type": ["text/html; charset=utf-8"], }, "body": {"string": b""}, } response = VCRHTTPResponse(recorded_response) assert response.headers.get("content-length") == "10806" assert response.headers.get("date") == "Fri, 24 Oct 2014 18:35:37 GMT" def test_response_parses_correctly_and_fp_attribute_error_is_not_thrown(): """ Regression test for https://github.com/kevin1024/vcrpy/issues/440 :return: """ recorded_response = { "status": {"message": "OK", "code": 200}, "headers": { "content-length": ["0"], "server": ["gunicorn/18.0"], "connection": ["Close"], "access-control-allow-credentials": ["true"], "date": ["Fri, 24 Oct 2014 18:35:37 GMT"], "access-control-allow-origin": ["*"], "content-type": ["text/html; charset=utf-8"], }, "body": { "string": b"\nPMID- 19416910\nOWN - NLM\nSTAT- MEDLINE\nDA - 20090513\nDCOM- " b"20090622\nLR - " b"20141209\nIS - 1091-6490 (Electronic)\nIS - 0027-8424 (Linking)\nVI - " b"106\nIP - " b"19\nDP - 2009 May 12\nTI - Genetic dissection of histone deacetylase " b"requirement in " b"tumor cells.\nPG - 7751-5\nLID - 10.1073/pnas.0903139106 [doi]\nAB - " b"Histone " b"deacetylase inhibitors (HDACi) represent a new group of drugs currently\n " b" being " b"tested in a wide variety of clinical applications. They are especially\n " b" effective " b"in preclinical models of cancer where they show antiproliferative\n " b"action in many " b"different types of cancer cells. Recently, the first HDACi was\n " b"approved for the " b"treatment of cutaneous T cell lymphomas. Most HDACi currently in\n " b"clinical ", }, } vcr_response = VCRHTTPResponse(recorded_response) handle = io.TextIOWrapper(vcr_response, encoding="utf-8") handle = iter(handle) articles = list(handle) assert len(articles) > 1 vcrpy-6.0.1/tests/unit/test_serialize.py000066400000000000000000000076301455450430400204140ustar00rootroot00000000000000from unittest import mock import pytest from vcr.request import Request from vcr.serialize import deserialize, serialize from vcr.serializers import compat, jsonserializer, yamlserializer def test_deserialize_old_yaml_cassette(): with open("tests/fixtures/migration/old_cassette.yaml") as f: with pytest.raises(ValueError): deserialize(f.read(), yamlserializer) def test_deserialize_old_json_cassette(): with open("tests/fixtures/migration/old_cassette.json") as f: with pytest.raises(ValueError): deserialize(f.read(), jsonserializer) def test_deserialize_new_yaml_cassette(): with open("tests/fixtures/migration/new_cassette.yaml") as f: deserialize(f.read(), yamlserializer) def test_deserialize_new_json_cassette(): with open("tests/fixtures/migration/new_cassette.json") as f: deserialize(f.read(), jsonserializer) REQBODY_TEMPLATE = """\ interactions: - request: body: {req_body} headers: Content-Type: [application/x-www-form-urlencoded] Host: [httpbin.org] method: POST uri: http://httpbin.org/post response: body: {{string: ""}} headers: content-length: ['0'] content-type: [application/json] status: {{code: 200, message: OK}} """ # A cassette generated under Python 2 stores the request body as a string, # but the same cassette generated under Python 3 stores it as "!!binary". # Make sure we accept both forms, regardless of whether we're running under # Python 2 or 3. @pytest.mark.parametrize( "req_body, expect", [ # Cassette written under Python 2 (pure ASCII body) ("x=5&y=2", b"x=5&y=2"), # Cassette written under Python 3 (pure ASCII body) ("!!binary |\n eD01Jnk9Mg==", b"x=5&y=2"), # Request body has non-ASCII chars (x=föo&y=2), encoded in UTF-8. ('!!python/str "x=f\\xF6o&y=2"', b"x=f\xc3\xb6o&y=2"), ("!!binary |\n eD1mw7ZvJnk9Mg==", b"x=f\xc3\xb6o&y=2"), # Same request body, this time encoded in UTF-16. In this case, we # write the same YAML file under both Python 2 and 3, so there's only # one test case here. ( "!!binary |\n //54AD0AZgD2AG8AJgB5AD0AMgA=", b"\xff\xfex\x00=\x00f\x00\xf6\x00o\x00&\x00y\x00=\x002\x00", ), # Same again, this time encoded in ISO-8859-1. ("!!binary |\n eD1m9m8meT0y", b"x=f\xf6o&y=2"), ], ) def test_deserialize_py2py3_yaml_cassette(tmpdir, req_body, expect): cfile = tmpdir.join("test_cassette.yaml") cfile.write(REQBODY_TEMPLATE.format(req_body=req_body)) with open(str(cfile)) as f: (requests, responses) = deserialize(f.read(), yamlserializer) assert requests[0].body == expect @mock.patch.object( jsonserializer.json, "dumps", side_effect=UnicodeDecodeError("utf-8", b"unicode error in serialization", 0, 10, "blew up"), ) def test_serialize_constructs_UnicodeDecodeError(mock_dumps): with pytest.raises(UnicodeDecodeError): jsonserializer.serialize({}) def test_serialize_empty_request(): request = Request(method="POST", uri="http://localhost/", body="", headers={}) serialize({"requests": [request], "responses": [{}]}, jsonserializer) def test_serialize_json_request(): request = Request(method="POST", uri="http://localhost/", body="{'hello': 'world'}", headers={}) serialize({"requests": [request], "responses": [{}]}, jsonserializer) def test_serialize_binary_request(): msg = "Does this HTTP interaction contain binary data?" request = Request(method="POST", uri="http://localhost/", body=b"\x8c", headers={}) try: serialize({"requests": [request], "responses": [{}]}, jsonserializer) except (UnicodeDecodeError, TypeError) as exc: assert msg in str(exc) def test_deserialize_no_body_string(): data = {"body": {"string": None}} output = compat.convert_to_bytes(data) assert data == output vcrpy-6.0.1/tests/unit/test_stubs.py000066400000000000000000000016011455450430400175550ustar00rootroot00000000000000import contextlib from unittest import mock from pytest import mark from vcr import mode from vcr.cassette import Cassette from vcr.stubs import VCRHTTPSConnection class TestVCRConnection: def test_setting_of_attributes_get_propagated_to_real_connection(self): vcr_connection = VCRHTTPSConnection("www.examplehost.com") vcr_connection.ssl_version = "example_ssl_version" assert vcr_connection.real_connection.ssl_version == "example_ssl_version" @mark.online @mock.patch("vcr.cassette.Cassette.can_play_response_for", return_value=False) def testing_connect(*args): with contextlib.closing(VCRHTTPSConnection("www.google.com")) as vcr_connection: vcr_connection.cassette = Cassette("test", record_mode=mode.ALL) vcr_connection.real_connection.connect() assert vcr_connection.real_connection.sock is not None vcrpy-6.0.1/tests/unit/test_unittest.py000066400000000000000000000127121455450430400203010ustar00rootroot00000000000000import os from unittest import TextTestRunner, defaultTestLoader from unittest.mock import MagicMock from urllib.request import urlopen import pytest from vcr.unittest import VCRTestCase def test_defaults(): class MyTest(VCRTestCase): def test_foo(self): pass test = run_testcase(MyTest)[0][0] expected_path = os.path.join(os.path.dirname(__file__), "cassettes") expected_name = "MyTest.test_foo.yaml" assert os.path.dirname(test.cassette._path) == expected_path assert os.path.basename(test.cassette._path) == expected_name def test_disabled(): # Baseline vcr_enabled = True class MyTest(VCRTestCase): def test_foo(self): pass test = run_testcase(MyTest)[0][0] assert hasattr(test, "cassette") # Test vcr_enabled = False class MyTest(VCRTestCase): vcr_enabled = False def test_foo(self): pass test = run_testcase(MyTest)[0][0] assert not hasattr(test, "cassette") def test_cassette_library_dir(): class MyTest(VCRTestCase): def test_foo(self): pass def _get_cassette_library_dir(self): return "/testing" test = run_testcase(MyTest)[0][0] assert test.cassette._path.startswith("/testing/") def test_cassette_name(): class MyTest(VCRTestCase): def test_foo(self): pass def _get_cassette_name(self): return "my-custom-name" test = run_testcase(MyTest)[0][0] assert os.path.basename(test.cassette._path) == "my-custom-name" def test_vcr_kwargs_overridden(): class MyTest(VCRTestCase): def test_foo(self): pass def _get_vcr_kwargs(self): kwargs = super()._get_vcr_kwargs() kwargs["record_mode"] = "new_episodes" return kwargs test = run_testcase(MyTest)[0][0] assert test.cassette.record_mode == "new_episodes" def test_vcr_kwargs_passed(): class MyTest(VCRTestCase): def test_foo(self): pass def _get_vcr_kwargs(self): return super()._get_vcr_kwargs( record_mode="new_episodes", ) test = run_testcase(MyTest)[0][0] assert test.cassette.record_mode == "new_episodes" def test_vcr_kwargs_cassette_dir(): # Test that _get_cassette_library_dir applies if cassette_library_dir # is absent from vcr kwargs. class MyTest(VCRTestCase): def test_foo(self): pass def _get_vcr_kwargs(self): return { "record_mode": "new_episodes", } _get_cassette_library_dir = MagicMock(return_value="/testing") test = run_testcase(MyTest)[0][0] assert test.cassette._path.startswith("/testing/") assert test._get_cassette_library_dir.call_count == 1 # Test that _get_cassette_library_dir is ignored if cassette_library_dir # is present in vcr kwargs. class MyTest(VCRTestCase): def test_foo(self): pass def _get_vcr_kwargs(self): return { "cassette_library_dir": "/testing", } _get_cassette_library_dir = MagicMock(return_value="/ignored") test = run_testcase(MyTest)[0][0] assert test.cassette._path.startswith("/testing/") assert test._get_cassette_library_dir.call_count == 0 @pytest.mark.online def test_get_vcr_with_matcher(tmpdir): cassette_dir = tmpdir.mkdir("cassettes") assert len(cassette_dir.listdir()) == 0 mock_matcher = MagicMock(return_value=True, __name__="MockMatcher") class MyTest(VCRTestCase): def test_foo(self): self.response = urlopen("http://example.com").read() def _get_vcr(self): myvcr = super()._get_vcr() myvcr.register_matcher("mymatcher", mock_matcher) myvcr.match_on = ["mymatcher"] return myvcr def _get_cassette_library_dir(self): return str(cassette_dir) # First run to fill cassette. test = run_testcase(MyTest)[0][0] assert len(test.cassette.requests) == 1 assert not mock_matcher.called # nothing in cassette # Second run to call matcher. test = run_testcase(MyTest)[0][0] assert len(test.cassette.requests) == 1 assert mock_matcher.called assert ( repr(mock_matcher.mock_calls[0]) == "call(, )" ) @pytest.mark.online def test_testcase_playback(tmpdir): cassette_dir = tmpdir.mkdir("cassettes") assert len(cassette_dir.listdir()) == 0 # First test actually reads from the web. class MyTest(VCRTestCase): def test_foo(self): self.response = urlopen("http://example.com").read() def _get_cassette_library_dir(self): return str(cassette_dir) test = run_testcase(MyTest)[0][0] assert b"illustrative examples" in test.response assert len(test.cassette.requests) == 1 assert test.cassette.play_count == 0 # Second test reads from cassette. test2 = run_testcase(MyTest)[0][0] assert test.cassette is not test2.cassette assert b"illustrative examples" in test.response assert len(test2.cassette.requests) == 1 assert test2.cassette.play_count == 1 def run_testcase(testcase_class): """Run all the tests in a TestCase and return them.""" suite = defaultTestLoader.loadTestsFromTestCase(testcase_class) tests = list(suite._tests) result = TextTestRunner().run(suite) return tests, result vcrpy-6.0.1/tests/unit/test_vcr.py000066400000000000000000000302031455450430400172070ustar00rootroot00000000000000import http.client as httplib import os from pathlib import Path from unittest import mock import pytest from vcr import VCR, mode, use_cassette from vcr.patch import _HTTPConnection, force_reset from vcr.request import Request from vcr.stubs import VCRHTTPSConnection def test_vcr_use_cassette(): record_mode = mock.Mock() test_vcr = VCR(record_mode=record_mode) with mock.patch( "vcr.cassette.Cassette.load", return_value=mock.MagicMock(inject=False), ) as mock_cassette_load: @test_vcr.use_cassette("test") def function(): pass assert mock_cassette_load.call_count == 0 function() assert mock_cassette_load.call_args[1]["record_mode"] is record_mode # Make sure that calls to function now use cassettes with the # new filter_header_settings test_vcr.record_mode = mock.Mock() function() assert mock_cassette_load.call_args[1]["record_mode"] == test_vcr.record_mode # Ensure that explicitly provided arguments still supersede # those on the vcr. new_record_mode = mock.Mock() with test_vcr.use_cassette("test", record_mode=new_record_mode) as cassette: assert cassette.record_mode == new_record_mode def test_vcr_before_record_request_params(): base_path = "http://whatever.test/" def before_record_cb(request): if request.path != "/get": return request test_vcr = VCR( filter_headers=("cookie", ("bert", "ernie")), before_record_request=before_record_cb, ignore_hosts=("www.test.com",), ignore_localhost=True, filter_query_parameters=("foo", ("tom", "jerry")), filter_post_data_parameters=("posted", ("no", "trespassing")), ) with test_vcr.use_cassette("test") as cassette: # Test explicit before_record_cb request_get = Request("GET", base_path + "get", "", {}) assert cassette.filter_request(request_get) is None request = Request("GET", base_path + "get2", "", {}) assert cassette.filter_request(request) is not None # Test filter_query_parameters request = Request("GET", base_path + "?foo=bar", "", {}) assert cassette.filter_request(request).query == [] request = Request("GET", base_path + "?tom=nobody", "", {}) assert cassette.filter_request(request).query == [("tom", "jerry")] # Test filter_headers request = Request( "GET", base_path + "?foo=bar", "", {"cookie": "test", "other": "fun", "bert": "nobody"}, ) assert cassette.filter_request(request).headers == {"other": "fun", "bert": "ernie"} # Test ignore_hosts request = Request("GET", "http://www.test.com?foo=bar", "", {"cookie": "test", "other": "fun"}) assert cassette.filter_request(request) is None # Test ignore_localhost request = Request("GET", "http://localhost:8000?foo=bar", "", {"cookie": "test", "other": "fun"}) assert cassette.filter_request(request) is None with test_vcr.use_cassette("test", before_record_request=None) as cassette: # Test that before_record can be overwritten in context manager. assert cassette.filter_request(request_get) is not None def test_vcr_before_record_response_iterable(): # Regression test for #191 request = Request("GET", "/", "", {}) response = object() # just can't be None # Prevent actually saving the cassette with mock.patch("vcr.cassette.FilesystemPersister.save_cassette"): # Baseline: non-iterable before_record_response should work mock_filter = mock.Mock() vcr = VCR(before_record_response=mock_filter) with vcr.use_cassette("test") as cassette: assert mock_filter.call_count == 0 cassette.append(request, response) assert mock_filter.call_count == 1 # Regression test: iterable before_record_response should work too mock_filter = mock.Mock() vcr = VCR(before_record_response=(mock_filter,)) with vcr.use_cassette("test") as cassette: assert mock_filter.call_count == 0 cassette.append(request, response) assert mock_filter.call_count == 1 def test_before_record_response_as_filter(): request = Request("GET", "/", "", {}) response = object() # just can't be None # Prevent actually saving the cassette with mock.patch("vcr.cassette.FilesystemPersister.save_cassette"): filter_all = mock.Mock(return_value=None) vcr = VCR(before_record_response=filter_all) with vcr.use_cassette("test") as cassette: cassette.append(request, response) assert cassette.data == [] assert not cassette.dirty def test_vcr_path_transformer(): # Regression test for #199 # Prevent actually saving the cassette with mock.patch("vcr.cassette.FilesystemPersister.save_cassette"): # Baseline: path should be unchanged vcr = VCR() with vcr.use_cassette("test") as cassette: assert cassette._path == "test" # Regression test: path_transformer=None should do the same. vcr = VCR(path_transformer=None) with vcr.use_cassette("test") as cassette: assert cassette._path == "test" # and it should still work with cassette_library_dir vcr = VCR(cassette_library_dir="/foo") with vcr.use_cassette("test") as cassette: assert os.path.abspath(cassette._path) == os.path.abspath("/foo/test") @pytest.fixture def random_fixture(): return 1 @use_cassette("test") def test_fixtures_with_use_cassette(random_fixture): # Applying a decorator to a test function that requests features can cause # problems if the decorator does not preserve the signature of the original # test function. # This test ensures that use_cassette preserves the signature of # the original test function, and thus that use_cassette is # compatible with py.test fixtures. It is admittedly a bit strange # because the test would never even run if the relevant feature # were broken. pass def test_custom_patchers(): class Test: attribute = None attribute2 = None test_vcr = VCR(custom_patches=((Test, "attribute", VCRHTTPSConnection),)) with test_vcr.use_cassette("custom_patches"): assert issubclass(Test.attribute, VCRHTTPSConnection) assert VCRHTTPSConnection is not Test.attribute with test_vcr.use_cassette("custom_patches", custom_patches=((Test, "attribute2", VCRHTTPSConnection),)): assert issubclass(Test.attribute, VCRHTTPSConnection) assert VCRHTTPSConnection is not Test.attribute assert Test.attribute is Test.attribute2 def test_inject_cassette(): vcr = VCR(inject_cassette=True) @vcr.use_cassette("test", record_mode=mode.ONCE) def with_cassette_injected(cassette): assert cassette.record_mode == mode.ONCE @vcr.use_cassette("test", record_mode=mode.ONCE, inject_cassette=False) def without_cassette_injected(): pass with_cassette_injected() without_cassette_injected() def test_with_current_defaults(): vcr = VCR(inject_cassette=True, record_mode=mode.ONCE) @vcr.use_cassette("test", with_current_defaults=False) def changing_defaults(cassette, checks): checks(cassette) @vcr.use_cassette("test", with_current_defaults=True) def current_defaults(cassette, checks): checks(cassette) def assert_record_mode_once(cassette): assert cassette.record_mode == mode.ONCE def assert_record_mode_all(cassette): assert cassette.record_mode == mode.ALL changing_defaults(assert_record_mode_once) current_defaults(assert_record_mode_once) vcr.record_mode = "all" changing_defaults(assert_record_mode_all) current_defaults(assert_record_mode_once) def test_cassette_library_dir_with_decoration_and_no_explicit_path(): library_dir = "/library_dir" vcr = VCR(inject_cassette=True, cassette_library_dir=library_dir) @vcr.use_cassette() def function_name(cassette): assert cassette._path == os.path.join(library_dir, "function_name") function_name() def test_cassette_library_dir_with_decoration_and_explicit_path(): library_dir = "/library_dir" vcr = VCR(inject_cassette=True, cassette_library_dir=library_dir) @vcr.use_cassette(path="custom_name") def function_name(cassette): assert cassette._path == os.path.join(library_dir, "custom_name") function_name() def test_cassette_library_dir_with_decoration_and_super_explicit_path(): library_dir = "/library_dir" vcr = VCR(inject_cassette=True, cassette_library_dir=library_dir) @vcr.use_cassette(path=os.path.join(library_dir, "custom_name")) def function_name(cassette): assert cassette._path == os.path.join(library_dir, "custom_name") function_name() def test_cassette_library_dir_with_path_transformer(): library_dir = "/library_dir" vcr = VCR( inject_cassette=True, cassette_library_dir=library_dir, path_transformer=lambda path: path + ".json", ) @vcr.use_cassette() def function_name(cassette): assert cassette._path == os.path.join(library_dir, "function_name.json") function_name() def test_use_cassette_with_no_extra_invocation(): vcr = VCR(inject_cassette=True, cassette_library_dir="/") @vcr.use_cassette def function_name(cassette): assert cassette._path == os.path.join("/", "function_name") function_name() def test_path_transformer(): vcr = VCR(inject_cassette=True, cassette_library_dir="/", path_transformer=lambda x: x + "_test") @vcr.use_cassette def function_name(cassette): assert cassette._path == os.path.join("/", "function_name_test") function_name() def test_cassette_name_generator_defaults_to_using_module_function_defined_in(): vcr = VCR(inject_cassette=True) @vcr.use_cassette def function_name(cassette): assert cassette._path == os.path.join(os.path.dirname(__file__), "function_name") function_name() def test_ensure_suffix(): vcr = VCR(inject_cassette=True, path_transformer=VCR.ensure_suffix(".yaml")) @vcr.use_cassette def function_name(cassette): assert cassette._path == os.path.join(os.path.dirname(__file__), "function_name.yaml") function_name() def test_additional_matchers(): vcr = VCR(match_on=("uri",), inject_cassette=True) @vcr.use_cassette def function_defaults(cassette): assert set(cassette._match_on) == {vcr.matchers["uri"]} @vcr.use_cassette(additional_matchers=("body",)) def function_additional(cassette): assert set(cassette._match_on) == {vcr.matchers["uri"], vcr.matchers["body"]} function_defaults() function_additional() def test_decoration_should_respect_function_return_value(): vcr = VCR() ret = "a-return-value" @vcr.use_cassette def function_with_return(): return ret assert ret == function_with_return() class TestVCRClass(VCR().test_case()): def no_decoration(self): assert httplib.HTTPConnection == _HTTPConnection self.test_dynamically_added() assert httplib.HTTPConnection == _HTTPConnection def test_one(self): with force_reset(): self.no_decoration() with force_reset(): self.test_two() assert httplib.HTTPConnection != _HTTPConnection def test_two(self): assert httplib.HTTPConnection != _HTTPConnection def test_dynamically_added(self): assert httplib.HTTPConnection != _HTTPConnection TestVCRClass.test_dynamically_added = test_dynamically_added del test_dynamically_added def test_path_class_as_cassette(): path = Path(__file__).parent.parent.joinpath( "integration/cassettes/test_httpx_test_test_behind_proxy.yml", ) with use_cassette(path): pass def test_use_cassette_generator_return(): ret_val = object() vcr = VCR() @vcr.use_cassette("test") def gen(): return ret_val yield with pytest.raises(StopIteration) as exc_info: next(gen()) assert exc_info.value.value is ret_val vcrpy-6.0.1/tests/unit/test_vcr_import.py000066400000000000000000000003701455450430400206030ustar00rootroot00000000000000import sys def test_vcr_import_deprecation(recwarn): if "vcr" in sys.modules: # Remove imported module entry if already loaded in another test del sys.modules["vcr"] import vcr # noqa: F401 assert len(recwarn) == 0 vcrpy-6.0.1/vcr.png000066400000000000000000003433041455450430400141740ustar00rootroot00000000000000PNG  IHDR1c9 pHYs%%IR$sRGBgAMA aYIDATx}uWu ` NW6`όx8&ȃDW ]]3UNWcpIy L'^IOm6l#8Aa{{>{>yz=g>>t#.\뿿G:~Eү/K~oѿy'فn;E\|7/W/=hQB/%{evo]Wɼ;vm?SN&{W]}|I"7KEɯv oM^kUyM/o|O?vp $.ܫo-6olt|GtI}ׅ oDru~3OԶ .|ǥ׫!p&7wRzw:^t ]y8|OJe:'znoQG{@|I5Ͽ'Vuo:;)D>+oISҳ~}х ~DH[~]!ppM7~IzwryG_8yW.\8t}G *=8t*}#yA/V}'H` p@8 H$z =q,ceL` =X+$|Rv޺x߯|+̳ʶlS\|DxgWdR _]{}rwqy=wqu|Ey{޵SW}?_xG\ZGZurzCɇWmYJM/%%/կS[=ۜÈy`W{/_HsH.^{GVIwi5k_S.G2y߱Jc7j:/6Oɳw['-)q?\m_Gs cŋr\;9?". pPd^ə QN]t)I. G$/%n&l?:K2/V>=6%b5߶HmKۧv\'2N[6ѷʁg@Ep }W%R٦3KVퟻ2}%39 (w츖ŷn oLJL>vz/Issm?6[z$Kmdot.Ns?r̤eRXگ}YYY|䲗k)x[n įJ(ɖ]Igj3mYI7.M ?R"(%h=v)Uj|tz\2/'01)awGF;Dɼ~ٕx|Ay/'8pKͷΩ.&e_,[n`o\%"RRGsi"%Z]H [=S"%ud:&=y\RKVش-JzҊThېcҹJo~m%Uonm}/DNF,m CB1xe_<8!P&(XJ:tkYxYzN]DZagA!1I}DC=KOZ}&[TÁ,xؔx1N-ajqKsNtm1n'n[ }yz\/Uz_c+zC$Q"V1|[>E}jqHfRrbsUuX^d%[YBBtq*_|I;嬰po[縯 LImWUqWˬ]![VYVg%ӾW1nݝtMrHmgHv3/v',=VI@B"%Nb%dR&L%d_}/^p! O>)2d۵o58yqm[|pS''VSs^W)w)m'Iꓒ?>W:N z5Sr3vMN#nM.ciu/ץgG>q 򫵊nmJypRh%%1Y76ڷ6^DfąO.I k>)1ty֊%c$!;V^KiKw]ٵm{&QRҭ५X'U?~c#|N_7n_;~5N}8ܪ 7 gnO:^kU\lOK汿˿{K_*3$/e0+`g;D7~7H/~Qٕt|OΜ';S*9g/9_(޿-V"X1!<>Pӿ7VMOpO8V{ _n?Ӄ7?rj>ɟ_җ̷.nN??\IoX6B+Xλ/^|O<}1ݥx^zYy}Y~Fj֋J+'{C/fi=Kgi@BEZ%1Z/HQ:`_cZ}P#iVV=Hc%SZYZO, zplZ J`UkeU[GhrVPnӄ#/M@'KV鵒ԩ?߽g}H^YcUo}:+p<KɳXNJ%ZԻgxH^ZŤW}ÕU)qwʾJ$Zi[O|'2C&%⎓{mhS;iViBBBZJ^"wKψK{}DOzoJ>7JJmLmoYmV۔@k;.S2$ {㍍7yYJȤN-M2wګ޵Jni֛~V;sz:8}{8їOV8$5@*)s>i^0$m;L)kKI'~ yϻ޽)\:lK\ݦOD~/6I$5y^yv $`J-ғ^_x cNy=y#)!;^'_PUB*=p};㏇ [:lCZ䇿5߶V$R)>Ie| $7IeRy)K|ۨY' =+i^-'gpt.%'':eINu,Y<8ixm^Lp)%cn`gGOK|e>;'Ã:g$'>~q/Rȩ&2scu4$`,}yI EZ @"0% r %OSЃW]Upi^#ypp-읥/+*+ygz^Zqk2ɈnW>imM:%IpႼW'ۥ$/^<8 HVH$.+E*;K:~/ؖ\7)}ϱM)U"oRbr&Rwߺ:r8fu$DHɩt[zȬJ+^;zI{I磟m穤ZJԤ]Z-v_$V ۓD9ӂ) w[knhB<8Mx)>E:Nz 3"?)y~+?|'(~Q#ao얗 3|~GT^җ i =X+`En`V۟nG8uXyo歶E<;.$鍶od^zFp9[W"裏#xDxiU^Zp-O>CC=\ 7xI*yZVE]>o]2/Ť{@MZ!G!w4o;vJH#<ܐ|ʋxIelK~Qxpn:aO㭱7xVqdXۓ'R/Oe|H yp [_G?ޓzwyש#uuL .)G"*N-@8$ gs |39?~8DR֗ߺG29]ys|l< p!py򏞔7fyEIJ}G6?~8 =z =AB p@8 H$z =qճ>+pB p@8 H$z =AB p@8 H$z =AB p@8 H$z =AB p@8 H$z =AB p@8 H$z =AB p@8 H$z =AB p@8 H$z =AB p@8 H$z =ABJu"%ҿ??_ HZwW5\;8SEG)oV׿uVH]JkxpEI)7 V]FH"$ɏ K~k_ce)nM8K7xz.$N~ ^3\0GJ}8yH+􌽴)M+Xw yzypE7w*,$LJ]wuWy#tXr$' 'rGeI)~z'-HԐ;hcG2&Lȝz wHmq:U$I9kFڑNiqUW]%pe-gS/soz2;uFucu'ߗ%Ces+n:snX^To4uݼP_ߎlIM7e2K9v?w]X>j|zO?؂*N^VFkj3?eol@={7"wk1k}=Iy uHA1Ps8U\֫"xY>[Mί~-}r7{u^"G_7&'n9۟=œsl9pm3.W>|yߧJ=7UKo}R|ErM7 \&Rbno{tܰJ]7$V冫7I9`Z3rd-Hgy8̈́P:ҥl :jubb}{'|, G[T' yIYVցuKnnL's* [aYN4 D|ҥ 0lyZ}@b;vI L{a/}>1i%>e u_WYfk%z:ͷ6ْp|=1ɭ.#NRʢg|lڔ ew\%lU^CHv.e 5KOAc[YSr\X%O$߳ҭ_ʳ>+0+Vrt}|*yV_rݸKgKx| f(HZ{9~uݥ.w@xk)v@U&}}Ayo:vAJy%i~VW Ӂ{OL;}vQ&j(?["67k1xٶ7mtm܇#>J:7nH@>.,DN"qe6v|zr|Ҵ%2Իyӏ46s{F٨]1NoA_ʫ}@eVW});oVɽ}QK_Y%=u\BoV왔{Uv]Zi| J8hLꛘ*Q1yEM.4gAN'ڣqSFcz%&VD-V5!NL`gJRg'KV.{9eDĮ.烲u>_&:ծ 9 Ws˜%mS/]nTJ]Lzm<}vI6Z]զ%'<-ҚEFԨϥD}bݨe4{&8aQ^ofz?_c% o <ou9>(r[orKioeYPj}?h6~IR}126onE>[x +ABoz %6I/YV+>&,H7S_ܶd綴kdZHJUm:Zۥ-7Zc\׾oݮvMp6ܞ*"&m6sG3A0޹~>n[pJ;-1Q5ETGir*U8mhw}4j{[e:$|; 2KJLYZɰQLݦDž:9v/nlJqu7 9] v:f~1G}['|?tɼ|-c7/޼?w_cҳ`'H- $`^ܻUOJn6}CBcmV8Dұݞm[U."W'j_=/J}Om\g?X׉? 0 eЛ տnvs(8s< Yt^ ^4t'r} Aɮ0ѫ"yg8bmAo>2beN7ؚnq*\RPN-/7wZn]Nc褒MgIq:T!M'"خ*Ah!61젓9D7u;YZ%u1/k>JV9sˏw"e[ ۦv'.5V"dxm6x}nz/gm$La Ӗy1(жo/moX'~o z 7 =GZC׿BȻ1Mh&J٠_&Q]NuE]>GR* "%J_K96;.J'Qmsy=pc+1ߟ/{KZU )*w+~3ujL (PcAqe ʝ+ m4 e8zo%Z>pmN Z1luJ4>8IhH}[6j]]ʿzM;L&?#[zVEkǏ[J}e>~ JyFiն/D}ݎ5Dvolr"bmBmy{)t6#~71_L湋Dn}n^~9t#K˥_!3H- $Vm/~+ qࠜlc>ɵ ໩w󩫓$Z}vH;XN}퐊F _[S|>Lb]|<Ȱ:FI_'C|jx[v9NZ &cC@={8P:}kv}vNU:Z1gn>I!]f&'&Q{wor|6pζ/K&co,q?|X2[&󖏋(od}=m?_!)a$M%%Ͼ=w6n[;N)Pfr0NKK ;K"+0m(ucٻԣw]Ξw΢>㜝ϑzw_$TC+-ҴgK(kzvX{{W$ABozpEyEJ8KiG-vuH$//xɝCE~%6hOӣS/>I)Wk |dEd4|O%/M-~W#5Um^Q3 A,]gciA>R[ާlr^:LׁiNNД\Bv?~u211d4hZuwkU]$](Ssq/z;75?%6ǿ4t,."ʋ{Hj(uv9gJ-mcz%vnQ2 l|ci-'c߮˘O?;$> 63$ABozpIĻU"K- m%*"dye`Y_p4EDrH\MCV$r}iZNHr=Z $|"aJvH3q6zi~0g^u&/0H_AY ns]IɸghF;o} wLDTnu=;i]V,&WGT.%/y;)Iyxdsu[#}lG+)+2eA&z_w|߶s\~dzmNwO=#}J=8[ H%R{V_ lT;AS]q/r8c.z Gy~p|.g}ۄTrxŰoyԣ4M탂u oXN)bHm+pZ$Lj^ol*1$*VEL.IfonJo3u?K qՕ#UY-v Huok3k9_<]\6&trp']F}^\E ]:6)[\y!wݞg/n? ĩx8# I_ЋwuJ:ذW{C9ƶE2azϔ2ixH MX'.L۠8+2 ͱVSM'Z:AYww_u{m=gˍ^jۭ]q"f߶>د IE67GNlFT3R+JQ'V9˙^ץvd_}=qΏ%>c,.r?OVi=y{?Y eЛ ֫zC;Wb6Dr7Ez3_R7rνqe3ׯtAiXNh+1O2]tlHm>ܕ<αH6>`WNڵJJ&6Xui3p"$Gt`M1IsERzf_C tsfO P^+Td"u 8g/D;eI Qrur[JmVXm1Z~Q&7]ۖQ ]~ܝo?N]9-_sj}J =J=ڃ2H@B믖M-Y7`I=2;*^ab SxXD"zu*9fZ9q^;AǶ7CϨ QUgn:b?Qrj:m{ѹ^ ۦ9,L Ƿ|l)g-ǝ{&eG˲1>5/++Ν>rRXu/Hyqyq y|{ CYncE *2'"TK;GJG6|~Z6>7e2oi/ _ǖl_޿g=bY-m=e0K?=9_~?yCEr'W䣟b$ABozpprtoja"ߺv݂uVpJNIǹcȢ蕯2ڷ WUs#[}yӎInt:~ }ǔ}lPcl:`BS|8,_Չ{~;~>]_W9z'f{VqQCwT8Kҵ=kl|l66_}Y*WINu[YmS9V *϶OIUklgE*a$gಾaU}#vsevR%ǷYQ`><}riʿ`3):sx@۵u,:=}$ԞZñ|md_([$JTv^JLm(tǺFqeF]7?؄@'ލz́ۤu[|sGIIrkۿ=\YӿȲ2s-=ZvK5Բ\j{Ģ?C'k+ϥ-s[s 2cMe Ƕ(`! Y2H@BMe:gcuPL;,g9oٸ+ҶMb 9E1۶gaI#eNԘ'57,[8DeM:f.9RiG'Z[f뱛sp||I%`B`_MWu[c}Ub=8[ HY[%U"[%:ZrOԦ>n$ޑۆ}zrgh yj)T.+Z1ȷ#R~ȩ2:2[޵#^Kv] jsz%Z{E6k71ǿݧ|W6ʼn6Y\E$uJّ=eƠs5'${;iN8-*O=Og4GIx?ޮջDJmeٳq{O=;ػ[pV z3Ѓ3*w'VY>NvPВUtbRW/=vu _HYg˜(x#tquDLiݎsNriͷK :)LFr]`'>g-'iRc.TTQgnjR#̚Q FKy ҆,c|2oi{9(ځ=-n:)in3lNVk8ߙ =!9Q`rAt Nu7;4nŦLgW?-sxemg7]CZZXV9ݽF"kI:i#o'b^6G91{$l@Bo$f guk2:DZU>Do4Xz9*uR]2u[?dYem kĶdm`ѹ QAM,S.KD};u`hHmP>)d5J`^80/exy>q2if/< ݊.}XNަo\,Ͱ-&(2fhRZyO=g6u%5W׍M&c>/:Yk~i =,11rev tP>?ʲuc?woӴoE?wdf\~H- $yy|_hdc]`9t) DiJ%ml꠿vS}yC+F0p8rYY|W8d*ذۅrey^baa*[˞>ws.cz_fdl. q)9’0EcchQ7_R_6ϏM1U,:dM<~_6m ^ؾ%1u]?r{) jeYKPFZ1ݞյ p쿳+"[rKeIyǵ9s-rmon]"KGl9g9վ~cp?_\`ӊyy\H- $qՊi:]qtGY ykeyG߆m>``[?+slyZ^e-^iۦ [V"PvoΣoy+r )ywԮR֪kD{DrY?v }2w_Wī]v3[zdcy:%}ls;/Q9,[y~ V> >ښ%gK snR2?ecwuyb_e$4#.~zxyiABo$f WK{7q@"';%8^)Jm*v〼d#^SɁANG vE99@p$oO',[r|pl%&WM c#|sS6`/:o^.OZe}19׉?o%ATmKZ?wy KTJ^:q>i6-O5-YsmGJ>ubc~nc>7ߏo}"-+ϗG,-Ӫ/n}7m?|q{-Km٪]ψ?yq$ABozpkJο(&&EDNZx~SI -oJ?xKv>((::Q7 qe^_+xNg^:_k}[m=s &޶ Se50)~\ 2 lyXx<@agҚ=r縺z{EZVc7?j9yz9c뒜s}|=`u᜾ϒu.GkV+þn.s^vTVdu9nv9~<G%v$dvo~7B]-nÅ2H@BNt{m'uVp/3۸ݒ^Vٴ$N,jN d Mq[klnVݶ>zgה3U ܢX#=vqxKd e+w[ߪ֪ұ!>.E(_ lRɜ{U(P&=l^Y\ Eɫ]{LKMI2۲Ʌ<V}zLF)Tc ǜ^aó~v":ISzQz[dð쿭C6_&پdφ-܆ {2N^$?"_%2=},>JvfM.͎ODǬH~YPFgF[g%ZR-ǯѮz\q2/Iw9UVڷ VG=K\'ROujrnZ^4qտQ9tKr̷}ֳf2Ԙ2+|5Z\?wSk޹>n{2r=RI@•aL6ɼhBƿӚjӋn2EΛcF[yAoRFqK>v_ڮ"nKlJ _]kvl'r[籯c}w u?|^fc2gm> WBӃz3B߭^]{5L;emMCnp &ech dIW|J*tm2qNu[8'jrjoIB[nĢj量$1,uvtض.yj^N,\15q#9h9 neS޷c_ϿnJ.HvW%榖vJ9"=mg6˰oZoٷ^ua>/ǷmOvKnlߏz۱9cz[d>m`?+_/#.mUlm؈oo7ǏMw]svߝd:M-Gz}]vz 7 = ~t?uufs?XûS14ڔu+O;c4 ls{Wɼ3_Cz@:$cQ O}4m^ 9]rW\3?t2EJ7:VpHP_k }tö:ɲfovuz?ysp{gmz_Hݒ,^d<ӞZmZ6x*߼B؋u]|n=,-~W犈HӲE:n?z_5m̝?69}wdh+?Gv ۫ʘɄPKuem?ߋ< $ABozp,Ҫ{OMߵ|L;1;>e\$ۏ}R\ap:ϑs q`֫@+vDtHǶRG[+GqCOtq;Dw~es,Ko}vx8zGHѢg<CVL_(><ֵq Yɩn1=/頮|]cȊzA' f~Od]K;23'xq'oJi% ZeWޔhrm||?ƕ)/7#Y8oQӱkp=[?'ˈU2vی}W-?*sGOfZ2H@Bv&=+gr*oM̲ @vMⵂmru3jHWmڹ׫[I>3rV޼utP=c"yu?pu8ǷD`Yͭ8][- "qAKDZ9yZvjۺ\L'oY9-jUS-[ZcEN.J}@+B|Fc֡]u.0d~k]CFJ)57+!6Xz^/q~:̷WotYq?,?QSSo'9mX"WA'/~vꮊjd'd[/gԳDX eЛYyo{s<P7T:iԁdjG%׷zmr}JxoCY_-1}{wJ-&vԼ>zCu~(3o jj/b%=04j`iIWky""Z{ 41:?A 9xMM_eGTWFZOfx/m7ۺhSx} 8a.jR0ۻX0Op2ձ̀%ÖE8lS'j]-Y>iZSOӶĺosV쿲syb[c"q7/՘mΗucYn[л:Һmi^ϛpa!$[n-׏oMLٿbzOFG-/ΥɏѾok66uXW[y-~}z[;^q<1j^<+u*Ŏ[g<KZxv4-kh_]5Gm6y~rss?sEW5>Xϕ/ǎ^$ V>8Ӊ$yxgl)2>}nE2moslEu?9_2NwR߮>gGn#Ej˲r꾩Q2co_*,}{U;=V:%QJ|lg73o؏Ow&X "7H`?BoVR;s3f>]MHtk"gmt{Ac\[d EԱ:jGn]{t>cIg6rAL/'ˏͿD6 K~LaysGЏp]2*yEV+gV-~o뽴meߺ6o_S7W-w⎕}ȝs₍#GLrm=cUPk'V]wuŖ6u9?~~ZfeԵlߦ۱6.L6no;5o˳O-睨Lbwvus++oڏ[e;1ܟ߂~@V-z%mD^zHli]OƭTdl oiq)$u]'E'P.up- l)mן7w>qZ_Gϛbf.ۨZNN~ Q\VGg%Oocjs[k%@μۭϖ^WmsO:稔;(\:۾WtK>l/+~=}?2Js籗 Ϯ,e2z7>u0*y翕,U}06cnNtذ'1F83mhI;oo k=>;JXd;4iE.]v}cv?fe ok k#Κ/ R_bO:TiS{ճߕz5_|Yyɿ|87fv^NڐNQgbl}P:|uS]%ӠurX>i5ZGdwbgS9 mK9weܬ\݌9+vYI$ aW)F׳%_&+jZdC{5 }ސ1V_$ 9#EfeSBd:psޏcbaj%(Oº h90{]fnײ?ؚ[>&!V>v䒫@%,+NJJd,Y՟үt_noߣS?qP9?6ڎG/Ǵ;QO%_1;icS"Te?涵 8X2E-ji_~nB_"oz؁m/O W:]lč5z[ 9~ ~+N_i|`Z} DqB%ݾA[DP[nN"6Ybmޛ>uVcu)xhu>0˿2ԯn]*&c`w׿X_+yT&¦%Wfl9v{7;ZxYb~I_ڠ*+tPk|{ z7ME̶yYIy[n 鱮rEיsY}.TC_яܗHײΥNR,іT}-sᴼmۜmyiwkm??_{y2cU#6/Jѱ[F옳=U})O>lRFiXװ:notN=_~"3z5}S2uc$4׿#zL%7몠%y(?8=uyv%﷠y]_066iـޏ&?}[l&Al.g4Z5ҷQ^O{%=Od*=}/:_ξ7ٔ{\m']txUa;3ҿoƕ-+kWD jU;|8l3Er]^tBa™ץ_+C[GWesʱ5Zv<}:֞l2O>2fkYYA{7걩l:(zys9s8~gszٯݫtWDee˘k%_` yߏd+oZQ~GMOwae_̧o;uϟ;IiNRִҼ/>t2moioWqXyyd|}s2PniEkd f.#;J։Ёz vg:_dƖz1B(E|Vw"}"gEoLDEO:зJ&t &q-v Y{}NT>:Uަov]SfauRH ,Jɢ: `tj_Kc=$bZq3myy.~]:*52tv DVf9ynRWo۴.cEW Mh~Ɍ*v}t=ٍDDZ+6)_@=sW;_涺}Y`~;vlgeL5ۉ༩ݒ_Z6XZߏWi?WD?7o{55Lڢyo߆#l?TG:ضՏzӳP_xt4${E~*=/jpۀ)m::N[3::ɰ9vvjoeA/ڿ**w428 a=~>pΡw\M~і$jAFne5v@u=lCm\sU:ضN U}Q_q=hi'C\;ruݴè_T%OZWT-]10">>EWoXnmynn^j۩X29$j|Z?GW_N~ =~O۹JKS2nou$Zx)ץކ+MksKIYyyugUB5ҥX 6ƹJVH5VC,ӎnM#CoZ/|v`})QD|[;yUOv;,N.Lv]倊DmڼhTG@wU09:=g2ָ';0xhG jb{qEM`/ھe}ryͿI+rol;qDvꍼҧs܂?VR`.;ro[NN1a̪yȏ_rY%NfN\[]{0s"2m meEc;Q)7#h~اuףv^u8QRApiit@^2hQ6R-6n߭~Wd "lFATԦZEa%tn]VZc$o uVsUGJޣYvVVN&.ԁ~6jzԲd-['>:Xz}!SvUhQEylq=ݚO?S։Ƿd/ctVcV:n'%j*|߿:NG}m"/˸`g̓p3ؔXYHa+eZCVxK=fRӉ7UsO6WNv UܾF.vbwTd`UӺ}.]*}ж*yCyh|$ -nۧV寊~6nUmW_rs^vz㤳?:,qg_9+TgLj[ku{.A7]%n;O:FkXuS |L<'G|`_"l/3wSL(Ǘmn]϶UnlߛjW_. Hnl՘_fes^P8ײnNdQm{:_N҂<}/N#C=iMŤ$ cMwCVB+f`FzoǗ_$adDa򽡭m (bw6EіGҮW(ۖZ'ֳ96KXE2׮KҿY9*AƱ\(<7up ]ܹu,A,e2jzYrtۖ$86ǯm+ >S+wǶgYec&V%@DC BKΑ4~Kc|mDOYd`=tb}Hk,=sstL-瘼s +7Ȧ,e~ugœvؗo+~Ѷu޿/xvXn˹?~ZshzLy7[+67N @;8 ȿC <}uP_g̛5VR/qD't;+80 Z2_AmYky[^]'Jɮ?۾]9.ixuWէ^.+ȔM)6ҼZ:xu+~ E9>o'S+_r ΨQ$̯VRuٶ}Fa#!|rJiϝ} 8/uWNi-}}+q[m_a/'Q3 Cf8,Z~4O[ 1߷K>2[2bT7==?7o˪y?Ȓ%u2_n Ij?#y8ݧӷ>jlmݗ?{$֤d^?2W uaяNmu]_9~ 1(M'6Jd橝,Im^,W>m|{ei.';u9Э vg>AS:q017Q1ZyoNRos:O}7~N7>>9|PԍJU=Pc|ҖiۻWƿ(=NuzIݷ/^OqI]-r9"Rc;r>2|$crUK zYn&oz1u]j'q5)\W3ڭ̡x>G8믒:H(:xqr}ZFpn>Q t t}K, =ȱmW'>D9s#9:G]YOdiEu"6?g}K~[G :l犼xҭoo̝o~}/6n?/Gsi#]5v5^vh!*Y!~=oG}^m$)뤊7zMR'EOؾeuj9ogo:5N>JgōUX22I„,_zX&z[/Rp|iߙ}fusTͰ-O9|[neR"W{*I=!W6d^wR|8ڸsw&*/;De3;uۋqo ҆Zo rFL:4xGΡ)Gq+svoZ *gMwީ;w\G3ؾU}s$0D;ĥ]@=FTb.rgHl߳7:N3;mb=ks~E?[;ٹ>&f%aǬu8v60j${,^XzڹжAK|67"*OMY"6e1i%}/p΍~n/ضܶ2فmO*DKg=O&Ajѽ%泝E=$He}guQ'e?=`k/瓸_v. i -/rz?5nMǼQmzpCB\T2o`c#|F: 뭝v[Jd[N~ui;sW~ײ:+u t ]hGƫ<>}7 @$ArlqEz[*z3%×؛:/@T;庌VEFgIuo=[yH}^|2غOF7YXZ7-gG"_\nr?25NNF9&}=VEϲo?߯*&j:eyox۪6ܡeD}Oo'W0$KٮyTN\~Iuq|{Ufߌh}^mz:hh +tʈV2q98KځTrvt9꥝3;UEDV&k6mH`-s44[G8gVAd!sk4M;{n|vr~TN:hiϪ PDq.?>ܸy[pld_+vk`ֽ޵WxEByIB΁s9wj=\ZVZ1g\'=ܮ |`LzZ]25'}2A/&Q4˨މsBsI_/NJ9=.?|7ka7OY?wVRџ.|mZ}_Ӧ޷վ&9Sܜ~a=GeeEUiwuy.}Ivz?+ zpI)D\OF:592;evվ@I6n.p7eJ,;v$7a-^ Rm{زEDҦgucn?276_klc_`{~:q }R5Gyǵ9hi5=R?jm9:=;_J- W6_8ێZBpl>o `cDEճ8q pa=\+蜀"ӖQ|_g}{tؖlj'~-v^Ek|[x{xyt9@wNݨqe,ߞ]ǢO[ewiS'Jm8no-T;%Э.΢Y En˨^|!/s&.QbUsC}N}ķ6e{[{UM[`^ߜK>2帮^g+1b]s[I?{=q{-6tlUA{K7[j{{Ц҇tP >XK7_]NMm˄voZp2I_Ըɸnm1l[5JeQ}k:ƨ78M_Sw\1Ѓ+{{h8sT~R''— zsm"g>E_a%旪}? v|2QǛ_MU 7Oi:ܡ z^9iib^mrk':;ۭ6ot h,ǏW}E:v/.w)g޻@oJeE]p]7#ٔQ9zM;q׹ƿm}L!n{W_SR 7KKEvZ}̥.f)%6+~@}}8vKEI鏾otr!oە}yܚ7djy-˾?jq%[ijbˆrOk@E˷bRdv*;VG935Xd؟qQ߾,u_wU;zwH'#vՖ6F,rt|ԁH>.rŲ| ]+vb+8c,6z*iV1}P/;w*:U]n!eRĔۍ>ySIO^;n[fO|ׁ܅rgREY*uo7r@'sdsMoemc%&7n5iq8o4o}r_zmo-m}y,GlXWϡǵv^+_ɖzw3i}.Qb;&-=GMzY`-sƿo9ڇnc.r_oCB5mW{t*U $G#qJYAN"P Kҵ"^_QF[%83/ߏb'2nf0fﴮ2bN԰]ƺL;NQ(G0;UѺoη_{^JvѷZp}([iW`.9y5S.ǶC":Pusm?I"Q[8h_1=^Q0%Yt{}=MPZ={ Ts?UsxP9xf{kK-|WoƝNt*ƿ};j$Nj"^_ٹǖT9Mg\ hS__bE`sWݗelgK/We]cZZ۶~{DW:?oҎ'cew{oWpf9E1/eь 8?[{I=8Ѓ˛kβ7SNDLY~JVmd$Oԧ %VE|Ү6eS DjH]q(}wZVdH{Sֻ>YnW&%adi%Mn6YSx?|쵂Xu)OݯeLj=Te_)o8;zJb'}%VjG6XRN ~8p-3 &ɂ$z_3|wt>yLY=m8Q˨uJ{۽Nϝ ]%{uˊ?0 (ƮǏNJPgcgƹxȩ뱭/}w~ned;),>Vğӱ9>ovnOx躽YnKۜ{lo{/_%X畫/ ؋X&c[ۮHfoY[iQje4:?O{V+&9'u~F]{W~ /~_m>49jT|>X/]w|LW~m}rN>_t>' ?<aD[_v>rM7 P~Jdt;+b\J/gXGf(H"Vr*J=,&P߭V|h'@w[NdSRQs_u]}.;x{\%n~[['Vq6Fkm|?b $@@5 jm5*p-L0<==.גO|(HD>Nջ>I1CcIˌF'/ڟ k߲_`ET;~-]ht}Z~iHЭ>y$e)|^! _m+tp}-_ΰr,\o/*Gѹ,/.ZcBl\Qۤx<gg}V`z3;0V u2d!lth@LN^@+s+udcY|w,ZVN'3oHv]UwIJ|tY{rt㵍`ضFLqZi2$c֩v潞@_}tƍO8`ycLovXWW}?#۾M_q l¢OeM*pOӶIQs沌OZ6"tNnꟉ| ҥuᐸ{@n}kCJDY;![/.|(щeW#('o-m̰RO gz 7 yH\W"OoX7{ɜѫd+Wz6N%U;SWs]/GMu;cE6%HJ}|^9Eܲ~_B̟KΕ;^eԎ¶M8[M:be[_XyCR 4HɼVɼu2oAٍ(Iץt%UZz5__$'eb_!"rxstSb5$6έ,ρέױ҂$_]TL#RWX'Уe1'#I^i%?'ohBBo$f wt?"wE}`c-u)a3a Q}+1nmY).ѯ('cƙŠ_}Rמy/I7rl[VZ~s|uNZ[kq{+@u(`~AlUG#Vdžg;% %nN%j_*ˎD6'oEYUyۉUO>+ _w˰@I|o1HڇOcM/wE ve[YD\Th[6H$$ABozgۥ*n34sWcѕ|W"'Np)Hrs+shc|ŰD>C%x^JytogD}m񸰿YJ)oPZ]8Ww*DmVwDڎx}c_\9"xK|٤)\{so0F6Y~(~/*Ks%]d/-ѝeg=? oWtw~U"-,ž%>\ˉzSw q8w88k>gDd5?_ =H- $6ݛsf20e#?psj]אEoۭjnniGosK-IIuz `UHnǧ-=^v2|&;_\:Ώ ߆2dTI>r}Ƚw4/hG-9IղIe{yNɋ[[nۖ%*vba؝nBc"#&wܲ%JC߽yoɩ}]'tm/ƣf|쵄.^t^ -*зՋH|Al$ABozg_:y) \tk˝*}un6lQ^!U7>lqN7D>{$Nt+. [%h%}b*ٿo*o._g}˛oY^*J{m"?j2wsv%dv&cU)-B.xӞܻVc1a]a@TI |̷k[ys،fV߹ח:.zrYďx/H™2H@B~oDW;pi#wUh궇~v7/'Q_J_ꚷ뷧MHYO}M[]uR.w&ݝiHm^}*ITLf9vƷnBYGnUY~mo+_織Ji| }Z ̮hJO|ᩫN>YɻfHsd7v_̰\6/+ҿ䅲dؗed#Gl\ؤ ~#,m߸GXxc)ls&;I/ H- $&/AWϷ[ .moQW[n a ޱ-z3++SNl<8;rI|y{(t>VߞL}x;o J}sYQů7JF[åd[WAqB_ b="41FOקMpXggNk\^n_g5Y#%J>۫Ɩ?zlR>RQ@aVFcǿ+;0$/0$_=-frFx홂2H@B^!؉^}])snh:?DD+Ѿ%%ɏFN[9|/Ku"]S`[Qj:~훫E>U3Mz߾ b={uVwsXSVSqeUtv,#]&˞8vK?ȻY8~'Ҥ4|(;fmszͫlm]Zh;,YM]m%J4\I-/\8y{^EW#w=6$\ZwS-Ll?;lYMp3N.]$sM[ H1"? +c'6J^tM݆;q:HүV7Y9a&)e+Tg V:=3jn[%_-G8-'$hvOKR~ݦd׊G p;Nͮ!ӜO61z~yI\Qtnew^g$Ŕ %B[dh9>P۟eɉ1XEmUIY/clҰۮw=$ݎW_ocmcK&Ʊ[Q"?ҬEZq2#e5v! z3;Cr p쯘W@EUf8 HNxD|ϒDH6qP% 8>iToEzC;\ yOzsmۤWIҹ[+LO1Do,A %+e,_ X'8=p%Zz>k}/;'ڴ~JxLٶQ,JMQpk7V*'wޝZߎۿ䦦/Y~5~N-jɶq }8In]2KL[o?僄2H@BprI=}QluW4maܻf嵮 FDyaL"w JZWWɻ"ܲNfػ~A;W9hÓWoMַW[ڕrY6&ZIngi~}Sw|斕y/9GZb/Wﴟɟ[[6",뿖q;l{Vn/cxi- ,i(`u4yDaS',]vH-y7t?hr ޺2d[m x1yWj1Ъ]j1m^ x+T'__]%sgb/a4ׁCvZWLʵOlE9g}wZQWB=&6p iWw{Dy%ml໴ERD;aU}׃ɀ]m=Van}WSr'Ůvmi"}T)L/ʛ^Y.ίP[hED7|ۢ[l&D{L)c.Pw^ ݷȿm׿N2u $f wHͻ*t S'alM9ϟoiOI1ɻ*=St.sF:LBzCøٶe~KҧD'wE~m(^m/Wliaa8> _aұݾfڡmЕoNֿ;3P'V}AH1|?)6eu]uTmmAo4uZE4OE|zUV6ߑȻH_[%>Uiػcw)61C 6ɧ}"%QD1C}Nle)?N$cgzUb=bv]2^C>倄2vnܲ ~!Ϙw8h1ѱ6}*䊐e 5Z:cyk"?ؗ`n^뿽ӟ} nÄq/Йc]YAXnʑ[-Xc'Q5u$kY_Y/ ᖛ7_|U6CF0Awl/>Dj?,oJxX/_]ِ/\vt?s)VdW|B]_wk훾݈GU{5f$Z+ F~_3SweЛM_r]{Q'}B\?yVڽe % q"m'{I%g+E^-eI5&v~3"?Nz2rҽeaVd?kVثNـWz{`v*oT ejbSzZgG_#0=9yt^21,QM_|2uQeX+P\J:SO.;$׬}+o k^!r<iQ'\}HߍյWڕߋeyEgڕu7ԟ;iJoה?ƪ<[qmm}Hޖkv>'SfO~OF'qRV?;&W]QE]W8=v$f wHmԓzy|h5O1vuoܷ2niF+v(c w^+V"*Szc?Z]}Ӽڤ*{qз\wu$tS#,%+non빤V)F;]VrHzp;0w.{٤/h:qOƷ㢄Ѽ_ eCYT+ټI_Գ"?J9y&?_gЅ-NZVtA'pZ%K/jdsE[YXqn]%`p:[ H]jHznfW+p[YKDʩuY32LR"'~]CXW9)#K9:ﮮD>1oznꗯN`c;>W+/u\$3cn(U$d=܏e B>'8EW#'Y?[Z)svy?u!*eI_T_hټvR 6%\)O۬NꤡYF(mJ`ML4RWw(KoEz.دﰸuizepx\ܗ:mj(I/uS47dt(}{_\]M eЛeE^͗djneh'F6A%dm%%ߪdbIeI=kr:#Ű*V Z؍ǞZ91]ƌ;"Q?L2^'ف[MŭAzUw7mYfǿYn?̭ptE^WG{g _Ik$F r!Ezm-]*>?j;P<ʃ]柋֫ɺ፸Z1^lc%/>u.EˋʃW~[[+HErrB81[%Z.ĭyk^n]ΉK;qKo[8,[m넝cV>F]6W'ݨH](/Ε\ ?`O[C7_ysUqQg4ULX`rV<|̩n~Ӌ밆[oO z 7 ӥ{_?k-oXgēiWNE^יHm'#ڻz]-k+t>&ΪTʻz>~O?k 9Ϩę79ޓS✦5YwIr)B#'6\\q[Jop蝎L#"{;uEgC׋Y[m!aGVR2xǴ{U;v}|B)ѵEEurmlVjo*t2G|wjGeV/MrmױΦ/%lmEMz`+NVO^wEdu0d2>s M{{µPgT?e6J9;'rl ' =Jo)=r0t;]kGL!e:9%+|~ŸB掎G)G[9% "${.q" h1ʟwi3^1fKrJ}ȩ呉DKy=GD >RTvp/Nt)GϝcO(*ZFVnkzT %,WߏZ=(<0T~$cY~d kwb7erjnxg[A5wY[ .kkr<(L}  #Z*aҙwx+缿!-噧G}ǎ: .(=p{G#tyb>nRF9:k1r<4:zmNY ^JE١9Fk_C<`2{*?#j2,K)1`b_?di =LןqVNyٱK]kO5}7^&xyTlqmQvS \g1ς7<7r?+kol?:t}z\}: fO_} Nm;c%<Ϸf7[YTv@$uyG }O⧰b6x%L1[Ʃ AJμLxw1I652uI3m]>&)fs'Ző1lx8:l:.IXi84Z1rC~1gwq̎:!?=oY3d{3olugz8yH{)^iNdؗ v2|'/m|c p߁CwRɤi,kFnr#%dh%:zNs<e45B+5Crϩw-8tމzȌ YvUa2NSiCYy3g.FuPtdz싟#x/R[FbL0"-clғ/6gk!f썐L\,Yٙ7ga'[pVyoYᄇh6}EVka+[yL0S4`#$+fδB,f*^g=~*?o8mʑe3Xt[Ta3\b5^; ň_+߰΃ZZ9#l~8Nw[+krr M|/wZ r)dBfkAju<[+3AU~DZFY%[ָ/@)HY& 493x2z

8~evc?-:Mg=m2;of?e3]{W>MtS=p_JmiPZ7 QXQrRhmqH.wTG&:ݲ)4cErGY g8?[8~#O㔏=Y|Դ jF^}kyܓ=һ}K?M>@C*tj#ڴ qyr}Je(놟WWySѮ?|[H3'& ߴWߝbV{oe x[.ٽ~[~8gu5WLpzQ.}x*kLKe(^k׹ג: WiԳa4%6?ٙw \o44ʖӽV QkB9HVO&[7zUD1~oG]o~g},& r_|/k%T?ي,^Df9\fQVbups\;v],1D'bTo.;\V2̷qe\̟?,=p߀C?DjHO!|^kZώ>a]2!9"*#Bf}O;y[RX9Vo#^)xsP#NɢJiv3,وC>0΋+1780/"hI .y7X/tXׁZo5d{vB%Ua;MzqS4}fס2%8},=O͢H7/'72o:RVl~oI4uY{'s~&n;DbڌqQ؝qn8GΗ?O+>^=MѐQ)nCWwFb8k%GxP+S0cOP߉&Q98܊6BcXϳw7`VfLl6+;.ib@[^}!}8;; @*9{>s]sc:ymdG\; :F z>,u$nﺓ:iwkN\hn)Huwus I*pCSʿ"ʑ9;2ˊf=^yRvoIe6ÒQbbG/׿gsߤ_#gru3ow\r gicn k;6.O1e+dC%F0vmZv6)8)d,w@s!;g܈7zJ{ZdEb⠨v[]׾:U;&N>Y]I✙;H'w P'ˊ /c|I^g;><uZHw]cɭu- KL!SSۤN9M㺇{ P [#ޑ9=L #=ڟ唟ãֈ,^{]+)rC/=]cl!3H֛ Q,clWnguIN:-<<ӁuAů=GƷ/Դ:sl~DUwY/vim[> gSB4zRaz(9ߏ.pM:8I5;תZC2.9~/y#\.:ШtVK ?v 2X T%&zw);o4Q9|P3pDNOF~UV7<w <Ͳ iG۹o 2|WˆK`dkY'rwxH|'ߺв&>'kWzIW {zpO)Jf+aEO.3G15D^3]U>yM)Qsk}H8ySڼRD)y'ࣳɚ8Gn˹g+љ<)> =љ  ǷqDogа7~ zs0ѕ"`&F>?cv9 `{u @1~ҕOw8a G;|ZFRi^u?ΊQDlv>礄֡U#EȜ$*8z##g+G`Ef=u.OL 0 QA`W.QJniøf$ y;xB\wh`=92R[rck]J ϒ8GZ vQl!,D*7ѰJ; Js)'CoaNAQdZ z'=k/.?EY&irw6z4L̛)`5}+&O7cџ#87ØIRotkKFAYvO)'ooCp?{=θ،GL!KF8j@ge zpV!Ԋ 3/9o`/F2XIKƢyߨLT`1u'rW^K΄kpL^L'SeE kxYDyq@Oa>T6^lnL&Jg[|!p;c 5G h"1S$YHHfy=V+è4R9K1\CpYGJg6bj#;լCp@(dr {(DË.p.Uiq=2D'w"fإgR^v c0N[7S֩7a\Oc at` C'ap{4KlTqc!At],BO|c;=pglyeeƗiZ~ X3ԈƩs|08&zAًy]2x}sQ\21+㹒\Q$7 W 4,Gv X@ͦ`FoVuے%y+yG>{ۿLe7^hӭ9{/QF̝Ae&cN8vYCa얉Q\v<_7 b{na_}aύ?/Yn=5?\|#T_R&-ـF.(X]x3ϛ>PK@v9ɢѬ %6CO⭣auTBW/,- S DꤎhsTqu?y%Y&aD;FckwPnC{.=Jtp6#VqǤGJڧ.׽`tJwBGf!"ϽDtO 09MTPjM]^,Pr!*OQ\ыDRE|&U Uu)Y[lwݚ;g=l{ōo)(,}](F䑼dlS-GӕffFeAdw z3oQFA.BaˏB5L*(y(N;ߧzuu&ʅfW{_TDr99 Io7fVJ'Md"^Rqek%3ַԵq ywT1B$1Y T种1Pv Ͱo> 2 T/zrRs/[K7Vg{!UgeϺI ⠨8 5?Wgr6(W+U:xsvC;.?F|(E22LgB=֗Ų n'䡇([}e0ρ0x0xf$̿Eg"7crkM.@5] 犘ԝDFD- &L߅]:|"?j%>h ۡXby:kmev/Bt_W]KY֛~#VPiMje{]"t֘ɗəwcxw< 'BM$V ֨nneZz֝~YL<*۔jQ~CvucfxqI`% QDl=#g#k>0F-{O|Äi"|PK(" dexQcuP<8Yz_um MUshJ Yie- QK\39/wպ߲$=d-#Sϕ>&kL` ;9Kx3 хLs5U|mk`{󤂨>?f7qnmmʕ?㶳 n,3dq$Xnu*j` sUK?[7ft5%\Z>}LEer=sBzW;NuN r֩?eH| @$kER<~D *徲pn8q\r+U|}C^K%,}JV`l۱%bI+vf{؜? ^૮6([)cnI3Ybkk^^xG3<:PJoum%iNJY˔,돿]E4 y^^*72=;[k[:yϘ6K=Dyy 6٤d>gNtṄ?[p[nˏn&*+Ϟm̴~j{N@mجi"k,3;(]#GXR[d$y&@gy0QӴ6ԯhY݃ T}DϺ˭鼗UI*=v3g[++'7,m-2gQMD+>;жoSvsl&͖;9K+uҷOѣmJqQ2r,5vQ:y-PO'3Cp>zޅ ؄GUgcה9azX%BhQ?6 e{ i `T5kr*mn1 Eyr#l-Y-!Sn^G{ >ksϑGzm^yNަNxo@_%BJ_"Ga[omp/gi7ZY>PGCX:]QzQ B;Y"oϴSƀj2lf5jrMb|Nޤ wR'o4f}36fȍП>-y%K1X[;kzm[Nz\~b 4A*uN2PO[+m| L `8ZY8;k?gi㕹ny+om-;FS?ecE-gz]/'vc'rF4g'qo~̗:OriC+[EVh)|}qj!Z{W}u)uMHHgc{A=GPhȕb^ȳ}943m[(9X5=Fʂd[yn7_&8k^j֌p?;=lscF>g<~H8)b㊍XdY1n |;> uu1ӡwgn]EY]zWHpej(9}C.=6tY8W;߬lA|^9;ȬSߡu67;St6$('Xq{vg$ܰ;Mϻy@NztLSɭr+kw\QT@^ɛi#{v^ԥZ8>DY&Eת?1/SLQ~2E|+CJ8p zǞmYJ=ژ^09/S͢3L6HE&rq6j0c]P؟JtI*8[dm D|GA֢\}Kw _fSxɐ&;|rQ`pq#è%혝oA -9"*ٕ.-y3d4ߟ{ apmd`M&! JfI-#rv=A!7>>erG"s}M>[Y!\EY6ys4nळ=8122 dͩdle.7.Vn(" /T-8 pq175dmTd1㌓ PFN'_12d|>z%aۓ+TZVnQgfL1w]'b_|DMPu.NZ8"-GlTg?Oϫܟ*Al~MȊK/~g>h9ῳ|8gY!"0̊<,*xeoQcm=p b֕ WeʗA.]qZ(hGX¿VX(39n~o偗C}\ߛï,o<Ȟg*fP8y#[\B=;O~(M YYpƺ'd%kTq/ ' Tv;xYX=//m$Y{f(7}@9leF=p }u$DɧψQJY#q1KZ]["!ژւ\S}/,8ِgA6$l7:뙫(o"H)q3: cTN{_-!Jx] bd&o]m6 b;ΘZ`3 uImKMlDB@T]:sc9dINH-=ztX=Kmȩ#cEA2wT99D;SKiyR(Qn `Лn' TtG bgHߺe_^1v)>j+}fD+[wJ-J_ܳ%hI(T)k7 p~̾cX87=C!v&ث ]<`8n.?4#D ($k\TI,eGȋkM3_}d5n|ۨ[FNQSb3(&P(,wZrL#V-zzx猩ҥ),ض'J2\oYU=\WJ&+"s٭$]-aG!K:SkJ`B88(4 = Ҷ.S?'sHz` :‡1Q[_n[=!h6oH^sQ4^\͞cƬp׹ǒ4Ej|o7h}ЀH(t̕F5yv$uD* F2 9Qv cqْ&9'7J2UdXRYZ6{Z?ٳySQթw6X8G}_"vq0v-xQni=HL+R*+F dLrd 簺&݂UKQeäy{Jש2y8Z9h3a(\C-瓥b.Sh6ҫJ!Z8h9:,Y-t# ;҆);%\9YT+2bJ&EҤz!9d.};1NRٱfGe"l&s,ԑZ>ߊn8\xȼ:بԫZo]?\ض ׹XF'|DDѨ`-7:W;z,><o?uOdLƦVw#CCR.?6p]pߊ(j]DdYA&tfM%?ČȥQԥeoo?#9dCyoW)JX^n2j*Ft촆ncfo:Gd_8}=8| ն`?}̻m9Cŵ ^;{o~p^9~e~H>h)m%PE1*+lިWr}d ?|,F&9ʓ"FVsqdV\dm(I& gg:Eyd$Nso+'EΗmH=/|?QqggYr}s83]wQeي rU^JtQүǶ+Pr>ߍ?&9Sm1Xv>MU:*=郦*ՖS>9e~.>LC|9upg!:sH Sum3I61(:~xag[dDYWz^~@5Y6k8Ƴ6H\zVQ:Qv 9U1DYm&פuq1Tmlr߁?9$w>Xd1gd؈~wRU^"7)5p8KG݄NM\yeM}2`62lAr[77lw۷sQŌ^vYG\ juPrQUFrxsv = 7|sݭQs0OtZs߶g$sT#y{١I! +LpĠE |PϙlZdhֺM *܀' 8u}JpMX Q3J9̈́[B!u)ْ=c;8~8\ʴTdU]2L| }y+twC?gttu iNI0w=:. ktPu9 k`y6sɛ@X&9h])E~m]I+ WeU!s@L C yE}s]M%.tFtWrd VFz;Ev{AEL=A@b$CFe\`G1ZVb0sУo3X*R.czʥǜV ȼ {lu&}=ɚ+6x+7?]8Ha>~p[$VL'sb.)ՌzU@ukYȔ@KD-R[d>ۤO]wɼ \pkTelF:n|{Go)TVU#e}%ݙ'g9Yg_ɲh0RI@eYt^xfXv>Ң*l }(nZf*25~R'x,]m>$z\}5%}M/}ȀC9 %:F-&L{1~=D1ZV1m%+/B=`Ȭ*nMr6|,f;v(_%Re2_mANcA"Z**rrV^mSs:On`/}Dҩ&t62?q<;sn*Nv K"3Qr nrWr8_uB\*J  ߂ 1/n(#w6ˆF?ka37^Q}*1횲 Z 1yʒi[.KDrUEsV, А5\/f.Elߜt6Θvdkٺ,#uvn=Zck\?\ C5FSG~% `AHZ6>8qګd7O4R@l`x{#e1ڟBZfj%p`{7+sO #٦>RQ@.c\6ٜ 7Ey9[F"61`xqh*\,:NۿD[dCI;ڮ!%tDx9$t]J/2(M@}ϱp(*浫 BIE8zƭ7GNt6頂D\ǷuY8 @L?D'm}%"@EL=f?0GX;#?WfOFņ7'^Iy5՛+jLuרLXrRiWj2q2[~fdtGz =,wue@R(G-*;G0 ̖,>#Fcl>EY[^RY֡|,Kߧr[j|6ԙ2.S%ƬdN4#﹧k}Y$E TZ2[C3 odyq9VY9c0W#J12VtmFupY}m;q?^6Wd \RM;0g5u#Zs.^#rr|dR3:8E{%˨Z7%mGMGoU1cz{(GZhԙ,ਲ਼M<zNj\_srYgoX7Qr ^q"D.i!AT7ro%83,Qzz6[*XWig8@dVӢG_ڸ|f!|K4Y,  V`(b:1eIT˒&Gy>.zRQ FOk%0ŭ^@XVrk3=u',{IC2#2̛eeN>>ywݢbP#;,% +]ܐe&fLAGrÐ mdi+ 7P'{_L͈+܋=RiGdITsVSo˱ F Q>CX3ҷtPL_udMp/b}8簝Zt65zz`@A6'Q Yp^#>?9afaaʩƠmiEVFg!l=y}ZkJE=bKn T>E2v&y5Ba.s;E!C++u_G)-n/!KoW[d) tV`/C qd"Xp,%,"r͕rX]_`BuB=*c sr~Kqf}F3a{&Kǯ`:ײ$+$p.aeTA\U6Zd^AG z PۦkGS-aEzuS3,gSWmLdNu zcN,7f$,<|'!LY̒ĜAC3vbH<Ĺ|43csܷXp %3MW-av|E|ֳ4B%ӥT yK~^d8QI(<8t rKiBh$lw¹pP&Y'ŇG z=k\ͨ5LAeyh#8E9YˮK o"z]P/UBxCTl^8v"4!2{^zl\W۱}EfC 3~44v`A$rnm3YXfz@8@ kyPq,T+]|cg0rgw׵΢lY)6(Ɓ0V Lj*I6L@@&p+N2}l$}Qn%F2u}ssg3oupJ#s]M/ ªiOj谶36CDV_l" ]e+aDl32$L kجfYTժatwmli7GYyz>Y˂rC/Bَ0R-**k5=yG.&h(Kۤ9OK*с6<3ïuG%p+ʚQ o#Za#ED:/,VYbS 2W柋)Y?S"2V)me);C6Ž;-N[5ߧÍiTg\(Ϣ:T\ʿ[t'O,d*"cu 4Ne[hSX;':9ʮg]2d-}]K1Vmo/`c C|$AXx95&nNڇd_SQW/m`V3D YuIbzbI0^%2&p,E=U^mbd8lWTl,rS_CfY#G'3/:݊yd™zD3c$֔LKSY]e;W:l% ?'oYyĘ\ %3C48ìnHe0.q=WDqk:zT 9<Uy>kiDWc<"1,'"M˸E.:c7N$$rce#y<@$AFkX-ONt?mWD>,B3Mz!ybsu+wڷsf"қO "D}E's@w8ZdeyCQ nF Jk! c횕)=s-9% &_F 9¦;s\fIo 8c&eWZ)~Fe q6F\Rg.jlȩz7QhvawU)+IKQOJrF*)G% ȱ%3 i:ompYvw>b~7x8Sɂ #ZgyM2~3R?LcVT˅Оd9Fl埭|?2=ɛ~)Ĩ 6+IB†x."Y-Av#ry\F-pk_e;8("I7\)yVs6DƑl m{2b[WXtK+ռϝO[QLYKoO"8@BuB ̨1Y4D 5gщ28aF->ێ;z[GiV"գX9sY6[ּxz.8cpQ+ &e|u)i5d{ꅇL;Ywҳ3K( :Y1>E*kc{WS\)8@iD9 |fa8D0l/=A+\H6r~Z; e>6rZ]%rY1_|?kgjums~ޫ-ĉgF% wD,2V Zr)bH/@S/̟J-RJiY63s 1~N1-Ѡgu<] E|ޓ d OYn#9O8w%` L? džl>B^ЛSNoM6S ތ&j!?|Wdj[8@:I(y*6!!GumBdeʪ{RQ I{(‚g.xbx+we SPFuQ8fR3NQn Qe33unDzbP{ ,-qF`ft됊˹E`o7ň++ J-GK_;yiYLjr,#Oez ҅lRAg(djbi=sIVF#;mF ? EַI]$reCVO}RrɽXh,6?џ#XYppv9yk),v7zVg\6i?siǠvFCh}(`YzLَ⸓؎!pR[<68@eQ3v]2 }:\}27PcYKG^ois,b337:+ƢbIJuwpF׆7xc_WDFU}Ιmc@(`3t H"@itI'y2M4L_C`CDM1|\z$rA|H0!I ߨ-]Sv)dU˳^[K`)ho \b%|x>K*Ec; yC1ؿf%N:Ccgq(MDgPsatTri.S:]}Sgh NnJ;giv+4 bzԓ* AQ)s`og2oT;5 `CR >N^ڑeRhڝFS5t?, 9lO C3ks#3_յ gIP=KFQM&Y볘|;a.j;G{\|Ԓvw8@?F2amg):z1ץBv.>Յdۀb/mw ;=DZS̢t9{E,SdV{FQvz;z]o#CX[zJVç k^.b}]c:-=6-]sF7` Ekؚ-gـ|c\Eګ/ hR(]NN)g)6J7HKy\3;wbT:ֳoqY-ٕd?#[ N= Xȸj#죁hӜ\I%(K '$"j]cFysyrh63Fa nCZ ,jF6.=J=d4;FbO=SzC#'8X1_u%j^.SZ78(3+ry]"FUFxѧDFYprFGAhe?>DeiFzȼ,;e)$01*('Ёi4d.DB`oCD.,zxG ɸWoFhXC- v~2pWg~2ϛ JY^wiR/@*TבYzTE>T@@eP ʽVo*j% mmp}Kѣ. dԁMFጽtmItxN] ^..1o[ȹ%N=|ߚ2fFpghow@ f}.;!M-?a!ݡ FR &L9:0-)jTز4V!5B$4:!E9䳬<#g<#oo2IXN}O? mfu1lꄕXM杈o5vQUUO21r^[4aT6vgIN9n%o"Bz!)(dWkH,ȕ[&sd=X32]g,Ss`S .'oCboa*9/o@<Ǘ jKf `?)O-Vf*+ߴxQf"ي #L[?`<ȹ"ud̒18cMagg,/+Ҟ}b?ʥTo^hhX"0H1Q2TԿ˼z 5Σ__sۈg,:}O:͙D .3ƺ$,i[v;~ =l|^9D. qq]T_w+'$_>Q 1@=3KgZ r&!1|Hh2)^VwO O ŇG҇ QQ9OGŜsa2j"]vs5=m?!,ΥdW HY&Qbv3μ)D586`aڗ"+Q("yheq{kͷvG0ɛ=RoAUx*EYJ8rab%?h nks߃.# ^qt[$;dRa3T7_z7+ehVd޳,r 186XCf~Գ*ʲrD]PO+5Ѣǚ/.ꪌ(S}76vzLkYv~o.Bn{ShB7o8@@43WSGFpxYɭCAٝ`wң#A0PoStxCVɃ'n? J˨S,1j<˽Sn5YOr, b`Ʋ6e}}@.>zSO0s}fd JM~بf6/rh 5آZLSeK9>ނF[boQM&Ye NlN?Ӣe39C=CM-LW#6e"VJ#Ӛ{$#iJv_o5*8VRtơUtIҏF.c#WR _G>>#8+cxٺdɵ( QReFm}lٗDF 8"]-&|y1ZfH>gna\ Blv(E\̑{BY6İ hI/ה"-Miu72Scv.캼QSn"2C =E\ձj騃Kf766C Bs]㣬_L|yR&q88oA.m3ʢ$,KX8I&QD_G熛y]ed1's:)efeǔ>f]}8\Vgk|E7`ɕzOJ.!80sgHl]Nb6VG~%`z`ͩK2Prau\t`.g Qi̱WB\]VKF>Fs?BZ' ,8;Oۨ^ˮꒆ'Yda +(ċRr$Jx!!uh#TO+!s%A*fwy']|pФ̢l%C;~gQfV"Q bC 0=0&g݉'mͪהFmva2Rb4YG<]ysYve.aTr8n6eMȅ6TG mf0H h>g5Gϱ&" Ѳ/01_#Es?%)=.* s/YbSlLOp a5ZDNΘƨo~QaD(+5j'~˟0_cke G*q?!20nϡ9~L=m{uy: gX=6_ʽ lr`8۠9 ѕ\J$d}rYly|DGCz- QdӖYBiZe6oP%4)Ud ?aO 8rnH( bF4rL>MY u?Q2;|tRv83HN&i ʾkSkyLCRoY<"AI^* lLTآBf|$nV^A=%+c|6ˮѺA?S2Fe g%Z2k7+r}3^-:Djz]M*.ζ^D`Xzy pnq\ hCc ghKCOvHƟ= z`oF昺#62.eVuy"|$p3Gw I#hw9+(kЍP nz5uNne޼lhuЋp1punA卿$ЌF,FV䖻z>)q:y']=@t0_ƨ 14c#5G~6[E)YxY1>k[m5DfZ.^X 9!rn -y0wi4wybs8[[]dOμ+19TE,بñZ>f ~n٘1, c>&Ut[YWl^#` 8NjIʦe1A|y2Y2; 9EO18Wԧ,#ݠʶ&'- @%-p4C_[wŵUS]2? +w߶N3ܔ|΁G8lԷ8Y YƩ7q2e&m}8W.Q6*Aa׎ā%5ǐ6fߕ^\^;C+AUHcUyo\ ʫVV[+Y4O ^<!9V1pPh 98]όNgdO(C0eУ5u%[j8YgS|F l5 Vk.my0+^4 =~:<'?BCj|^r3+l$aBMɘeYw2Qc]gǨ;R4yksL-2Mf^߲ܬ,czLY7Si2V3 r;`HEZ&^%@MgC_[le+pSQ^*dZ񍉋:&s1OgQ T=#F p[390+n8]ԥNagj# Sc\YT,,6hor=M gqU&ey+c~_?rـu?U9˒09|/]QpֹtH"E 8k&̫uz_&veќ;ۂS8RhyQ7@p.JbF?>2N٢a^3?FK|(Ogm#= WgİFXk(l6tn]pp74ʣ GKxF٦ZBDeXr杏#yg>GKye^hٖ˸.&Xϯ2CƵxyg~/C& պJ8gIQ#di&wQl/d}(W/Ue2&)Ig_`J5s2=t8';?_xd8FA)|;lLI ;x n}˻5FtyIa.&s(ʮ,ٯٌٝi ;&VTM-2)CwˢN>-[%ɚnYW`kH_jŇK8\>7` [K2tmJ1Fi"v2f#-oj:28Et."UHTLq<]~gz/rͮmn#kVr{8<#dQQzló6tS@^1j8psz`7Qׯ(z93(j1my!k,M>!#8<JV(> hLXRϫ*[xijR^JD`_}:e]MwʃO2 ?~f#NghcA]~OQj:e$^3@젳ȶ\VvYɅgϬqYSz:~'L=nEUST[m}!龡r/oΕ\x9zSO>`Y+߿l+v˼z`ֿ <$[;J u^R}PX=p[/SQTLeli'9RLtc-y(I c6Oz,9gB*AbLLلܟI:j;Ɍu2ʢy7D* ѕ~|COg(vmUFpFh_r۠p1`xPKJUWIYG}O;^s[u8 n羭q)gZgnB/FnvOI&u6n?ӟF|G/^V_(SDgk!]KѢYH=aFL+E.1;lIW-GNֱq@ק^K@eo1@G]Id}G/!IQ-Fdk2ߋܚ̉tc9uI76C',c)6ҍ3ZmrTEJYs',*0? K/Q9N(B6sD$Zn;ٵJz>>ʧUݚE n"q;[muBtlJp57Řre䮯ɹ&ҙ11BZƗ[gޕ 2;%߆y\m7dP*|SSWXhQ6k$[v Oǯ݄Nzඩ7>Z0ermL!~LvϺ`k%jiERe33?,=`Ֆ'?+x)s}Y[F{t南Q$KoĿu:ki V9hJim3G|ډ77̖W?OſApզe&,}|̃Z`ꠃʨSfv,nDpgff%]|KK֜-E>]_B3k2a jrYWy,}ף"EGGBdњJ$CgELIQ&]>I=? -MqIG2*_-JN5l0ODV'lt!dKR\PwYnKZÝM7&w,8Z)cU6lϻ,L~J3ǎ VG\yeXe3̓ Ȏ<6z4|2~֤\pN'I'xKFlz#K?+꧎DTxh [n6ϐ 6\|h_Jٶ2&WYcVU &Ĭ2r }^|]%0qL=2(D> lP&~ga)<6{r?3Oཧ<Տ~ȞSrB˦|bB=eHəms\rVScm+vC{~fH?YnY֞VDcUGjf L)՛mk^V7&>>Lyg[{2Jo,FHNXEOkawjgqd9Pn nbbu$-aKdwsfyuj-Sڟ߾[=Nd4$Qx6{iYG~ļ9t s|~tmayP$CmVsj*ۂw z3v+alIhwU]F"q˞2 yJcG.;;` eÐd'"J/rq-{KId b9)z=|Eqw:ٯO%;ZJ&&5`e8 5-1/Ԉ׿s\֑x6°6^QAY۞ޡ&AORYxQK.{(H2@G>qKa܍^brfD^y#.4߈ @%_DhԵ{S3 Tr6hj1ƣka_uY6b(/vYe2]OYzp·"Kjt3߼%-;@)%A,ˉ (*:}:8R-wDvN[B~3 uOUL8g4G-],_ eVV%]yd4>c1'-j$qBƉalx<[ٲeDib -Ϲ11;M5҃r&u|Т;(;O4\ _x+.yG(Hj%Li -B^==pgCtH0 %H0y)fFlyT"lw)=ЌѕJV[~ǰA?UlAi}t>X+pSrND[.j[ 7Ct5#O6+G-p߭NX(R 1ȼeOskemAc_#]vx\Vɹ)8˦x=ڦ6۪h1KK]rzscg5~>z8fo?Mž=G֚XB6w@9 U~$mq;_qoff)?!2k}'Isw=J;lx (ôϒQU,W%SLB䃽5-l?)5].6Gl|i#}XNg䊎u:reͷY1dW('?JtcLa\}b2VBȲt)dLBDQNeA;tW?1KferR~Lj&d{8R\E L e볙v?C|i poy# j;!(}>g vrANCw;MQ&B㭾;27YyCIڵ(ubW`.[p^Z~XY.kL~TϵcSbOIfew, Y{! p$Ǥ_\#6 c3 :ٯ1>ՖKs'zQ5Y=JD~,JC"l(Km'*H2xzu҇YAZaKy5Q흨g?SwΥZ,R#.Q |5?͘vxOZu:%}1u#))H7yj(YxoޤCW^;~m$XeT}@Ad+ bwIg=v'X<>{ǥC*W: U/HHigfk϶(XNbz m]=pר~-]dR++;=A`WY@g0*E+yp)b%ΗD̟)Qb5G(2u`)6o.rs1iZM0ATuGЃ8Щ3XDnNgu9"1YY)Y:[&+o[KpؾKKSgf3ި>ǁv۾ W<9e-eY^[%IrųK wyswHgVgHOQ$u$63sOYSuFrG[ޛ;UΎ_ks]m/=W(C+E*YE]7`Cd}矑eY؍L .6k7,ƃtfAi2>낲xΗY=i۩XGn$iW[:|6XPBt>r{!/lOW32t՚Sv~K"Hzv*ʽ2Ŋ#Lq?5a}Xz{K:U]=c}= M y;VJOWVF3E6~/!G[aN[THglV KYu T+3ZWzfw V?B,Ʈ1魾O3d7^_y0|*䡝g- V 8vdJm .V@IQ6zN72Sӳ+rYO,2n::]{,)+vRO]z3S)z#ϗK;rKs4: ah=^Kq~x©nٞzwL a$}ZYSf~~Cx=:o3,l3q٬mCLo!{(LtF :Xy@-.'P}detL]Z.d桕(VF{Y +CbX\x_)0e^_Y{ws3,L(6 ygY̱1ҳn;WŨ ս$Nm16Y?,rl)wN}/bjtG-ve2fDcgYv}T퉧>~ziOPV̼ռ,ve]^.~V\뀬yɔMwŔw//b0:ӝ%c {M(E0kz?ڵ;o7v7@?=NEy'F;inAd_ѫSOQoJ.dIq}NF?S7ZsOm'@p7C과sDK[]v:НpwXdBY0K cXa?=fN6A5LeN<U57zEcU<RkMbEeh-zrOU9 ]pq|-YPzD_]~zQW:ʾ%a+lGG?&zĹZQq|Q׾JmNN:ZZ.qӰc3o5_y}-]#Dm)Ceq0r/M7o8QLP_C4]QxG#A<"f7Ǜ.G}ljmwyFUeˁ +?;μo^ޕD7~ѷ,ډO w=7'kԯ{F6od w m==pϘpϕ2iAk aȲm(XxЧjϟ}Z;<:~$ǣLpyn>Y! Jفvpy`mZeژ9#R['w֙WMپX.c֟͂TEؠrUʊPj}NU R6&[:zd0Rhb%&sm,B p rIˈ|>,ndnsg&]ڍc&3 Xl,ְbi؍d }^̵\6֞hu؆Z j컾4 3zy#/C\܅3jI*KLp{KOog#EST5ptٵy}n{{Q! ' g}' VVR^ |SnƨO F9&gw9K0h:ϒAnk%#8̜|Ff&,=Ng>G)0_~d/r~ZGZéѻ ~Ǝ wZ&ׯww {zޢv)bBvAx;a)MdIeD|JWj'O{ʹSwJ51h;J2Ox^[Hllz卷TVoFpmY1;EYܨ.YKrL8A3AǗ~)b39=qηӾ!ﲆ3a/:=D=5ʯy0eAJsu2=po֟ډGNq XpSG Dt?fU guv1 ;^7+W?U?I%ӎogD *aeb8.Q>_.Ɗ+>}]^׺?Dvҋ`D͌'s>Xvi}ϟ֙ :(G֮%9s[ޥ}\ܿdŒf\8,]7SZn-A1am8g/㋒5=A,Y3TFmI)߃Dǹ?{; b;dD,ǻRgS.ISTJ_̌}4k.&@e|Eo٘9:_5"ds^3gȔZ#L/d,\gV>Ge2Y~aiZηq#5~gM,jy*Vg+oARI>g?Uy>/gveְ2WQ:1e>_98&tBW}vaVQ~ʼY{֙G֙wx+Cݑwm,o3F|VHd.XUEG.N lz-@"k~Ed'o 2gQ ao\?f{&uG⺸HKC,e-^2$ HʮJ+8dR儶RLGHѕDT%Vt\JYRh" i.h xv 9Ow}~{߹wftV22uW69݋j9q>vug8M=rp9/var*#uҵ+e[2⹫U|{hkAD24ȱ>@CXzjP᮸Ubs yMe`)JRKao\{#bȘp mous:cVJG.}Ɩy[")֖Wĩ8qM=ry̼70Nל43O[coIW?>T٧ f-gV·kܷsOuh}#ғZԍLm{ e}Sc)ɸcCBPH3Af3=;? kA%Ioٝܖң}ٖ$-X0K i3 Z=F,/r=>y'wĽ֚bAݫ *d.A&r2TYOUqrۍV";o4L)achw)_#/^J6 n⣭HLVSӛ 6n\yTnK ۼ TYlL?+ rنשָA\:Q\x2Bף뛁ib[xmDF7A!Aoo:yY+yOE@nFŌR3&Lzùe_Ο#L2qu+n׬nژmٕ8vgh‹ 2sJdkXĖlF]2t 'MଭI6.M5 _V$,&c HU| 9Ri̼D,M|Vk,B Y"Xspj_a@$R˼!ޢe6e4|%V=.k[=GI t5c}X&&ܲb*따̼^Bnن\ G6V~N1Fek(^_.bso@=c84Oh葃G޳CyebG=(r4固LSr6(.G=\JX-U^py9:Ǧn BͿoebXuw)[Yζڛ3#?5ny/ϼ%?>B9H.|;J-݌WZTVrԼ$N.Qր+ YIQhBtӺIޝlhN f.k߻CgQF֊WZn)ew񱧀ӿ B]wUW]G}̚ia1kSCdUCzPJWZg[:!ؔdW&vnIdItmvjyZ~=z'p˦I12~(*5c:Ʋ?%f2C.޶(W?WA!ʋm#61Q/E"cgEYҽ>ǖUTqiI8=u]!˧5aVB9鵟zr`J|Ceĕ6DIL2&F<4Q_wӪF%<+> ? h!C8y#ØZؒ7T47mQŨ[M6D}"$q]J֊m㣟֙z3{Ma"F@u2-()-j5:%5bfzum?J!XX=ñ!uWAViMk!(|ONzBWF.a2F̩[iKg䅿vE.|̳l1M*yj7Q+.XV{*cY./y_fmh譃]nɁ?³/ q'!?eZ*x"ԽM+RLA^Jf?|0Ҏ)Ө,# Pp {(& [΢[e8>(񌴸<<k=M7j8Po>B9T0dX}lH* 2w:<ᶐrelk{ rHo__x 5LVoV9n)?VH_2\fMx|2[݃| scwc?B z`9\aXm\JV7,ha9-1 rC\a.g0+j (։B-SDg 00wr0*]j3ʵ<ı-5?*y^i\}jͲa-!q v Mk8&FUA5uJ&VӁ2I-3]hzM=r8y{4Hйiu7l8#8<0-~o\?uT4n@A. >n/Y_ݜygPKb xٗ+^fM,[FTKye8+cwGp* C }N+nT,!֓_} v'>l58_1&.~8!:RNw\]y+K:zlVؖ,m~^{ ^qw]':2>P uck"i}]e7mM;w=[UVmkN}muF? {ܮ4GR&ϵ[^&js AMu^z RaF]!uM#E//ur8YBȡ|=y&ٖku[ i}ZN.IӹЊ[U\9}'5[!"0M!$c3i@ȞxcLԅEX^N֎bP,+0_Gxeh=-|C? w[#xP+iŲ"J^*TfJUHee?cmLqN\ݯ!{_&W1*c ENK>}K y7C^rfu{}=B9 }3VY 7r\q^ 7o|o,2~#[bFloe;a\;B#0n[,gL?k>'T`] x?*8zS׸BS@;C[-zH"zinw5I]ٚ2m#1lo>+d' .#;GdYEy*@H/8[![JEeL*]>o\Z|)lCNal1;󴠶O0!Gm-I{oit3 5=SAIe}r ӺcJk#`ZGJed{IcW KŒΧGo|:.zXVV oSd{uMxXMEXmWbn[ki#:Znj8 3ȦVy?g~WJ$<s۞ӹ?cKC<;xxa?1[_^ Oaj { u[ /flm1rv2dcK %_rCu.,[tZ enD`k= ~Xv*h ͌F:s+qq.re}m)5u +/X0/쟀B$E_dЬPXYFQ|8y#pk+_'@"r8!T5Udh5|u2}xgq]clo^[̹V{z^7. uBȥ~O%%B4sI!AںouB=44ll[eiM?U “7#qr579YZ-esOZiKca #Ǒ9VG3c~6%u.Li?_h#["Hn9q G~LuRyʴ]j27ZbmU4Ǚ. /\Ɯ.3}7[kDsZi#,Ǵ/]+eXY^Ҽ !c*#,ZBȥBzA߃ժGjV=]F-ubԝ_'uҜWo v[ȆvcY=n9}EeE \_͵laҢslןT bcRkҶgw*o~ieBo;`.<||e:ȇMf< Ik@~YPelk#5I(Ǚ=3Qc|vý9v׾흉~(z9w Kem\}ϡ9mX6˴_!~3!\R$ oJ$}Sk T}C1ftc/c1sOgWt:Mq]l7#{qt=>+ ieyU!sV+SuVyY'neX]Weedբ鍶!z` BS߉Xn+$43 _8!RowU֭dY7=y>L *ᳮ@_dmoms}ػIoMksũgf%[%c뙠 i?n˜V1(_&]~`` u[!! -о'qiophmAi#`[y"SVH&E.66/wػ荼E|"\'ֹ,?uCR?'9uZf7V;;Iu6^D.B.YN\?ziu#߆EvX]ye)qcz)\=}X1%~ZZ#&rGufxw@.1 /7y5\e3x:GpysIr ['6"BC Z{εU74M:h-@C1wE5k.k:dH&^_D}7ĭ' z~G_]mNO|ehGch3yHHsr^zt1@c˿v+zF[ZH 1UK<W.W #\.T3J܍bȚkMVKfK{l9dڨ\oכzG8[|^Uml)ܘ^؞]'4{@bk m{`sd/7y u[!Aݼ⋸~΢lUY.OclVRڢp ]W?AlwH]g}y=v+֙mh,-o1>s{kX|+q?B\zT2(f^g$I!NZ۰s[ur6$cϭ[~+Y!vs=F#/ \wUf[J\s3»sL9]\/f\޾׿'a?׿8l r[ h>BOM?uivU&~ld|l]ǵ¬SǗqta[(^6\wF^i7w{N(n<gIXZ _[{^?4=^2j`Hu;s,lYW=y&f,n_];V]nw|8rzY57A!-'?K}+Zluqa3kfXFoi{Ƹ8P:?ܿhzzgGh\F#m-=?/gіodl˵bRo/׀+u~<PACo4w9y#Bg%#û'ͽZoeE`+J+>kizr{bJ^exq': WEޱ+%p)aa|pXc{Yd[x߻"Qǒ,~ ˞^wuֶ 68ZmQaK͚-J5[8=YB̼"hnd̻ptÿW͚L?מ[\s@KH^6u܆}GvYrxz ;y7O2Eh+lf`7k6.㱈%,y@oz~o 5bBq&=pI]$̼S&[2L؂Xvs>@sǼ`Ӣn.朱'#w*ފyVp:ęsB 7cfN[A/:2ӂtj ÆZJ8*-Zoe"诽p#>%{; CԝRk4I,vZ6ZnrZå_/3r`dQ&,rn9ǚ{2VOK0#4ACozG[ {Ch!独c.~|ܶhKhQuo*μ}Yx v]Cg n_tݮ0?)ZԼ2Y{эmiq눵]y)t\8B9a:j s ^!C;Nbž RyO /*s+y=ez/$Ӯ3k_?F2|,.6撨I❷qh+9&9ߺW+{L<=s|%z렡 #ĉk:N ^~g2ڠ4^9-9Uj-Qx^\@Xٓ>5Oo팽k;#O*P=Dd.?ᴍS:]e9m-aba 3F`qv+6s7F[BY&z rue*[lfTizjl䄣 Tj-Isp8O%cLlO .a.o ^/2Zsk6 yKKV$g3[FGM׿[̾wf^w衡z ;b$S#?2tjv8Bȋl6N+1RI{oe;ni41=A(Tg^@Hߗ:cN,&祥|ɬ;]'M]h㱗ymj"\Ev\kTǞ{Б;+3lue)-&ss~ܲd$qθ ߈ n[1fjQjgePc٬+յob>G5㵚]X[y4Zq_\*Om !d'zN鄠/PbG[- RGO[YD #v&Vgl'siށsL&]2Ni؎uW;isjsYwaΨz.{xo.}Un[^ױC:=|ֿYq_ʢ׿(AMjc +5 ֣Wߵ9ǎ?O3B.{ފy3d26)䩭4ZU޽GS#lo`=|og;Qi\K-қe1[ƶmucZߥ.Ǯ{5.a~˫˶ͭۜ?X-vkm|t y<~h@Co4wM l#]ɞ̽a9LsE2߀J1:+cԂʲ/ l'4C|f\ּM <+ ]Oւ^+`iMšu 9Qtƹz>AN?HNȔeg`un݊]fYܘAx,恖({BM,t.qVC3bsU$`Ysʊy9/Y܆Ow~[ayGhBnOw ^vGѩѨۺ`R_btֈռ/BDU;[txL?ȴlpʮ;8}.1ʲisQ]N^'NYCnRԲ]fG.mNQP`HR*mDIH#3--вb`qn?Cl,YALYb6\e~Y}a+ȮC!S,)uFFB.!TfΘ >3>0m {"^K6cs cjqzE;ޛyzBvӟki忦ϛqx]>FvQLRn񆆶SԓdyP=D!ESe}< |T'_$c*42iKz}K"j,+DAYj#UaJX.Y J[M Q,ZdI̲HY\a{94MtII&o%4,QTfߡ;’3@ޑϡ oi:U:\VXs+Ζ97c.SJ$c'&U 85fH~'EUFoYKX/ ^^TV$b-}O(fDC EUI1XRT8Ծ l9.ZW{<r7§>/qDi(L/s\ό +? -喦Y ㋩EDn"I|Y<<$̼dB!{J2'x?v؛8(ǽLY[o2?a/ OpaA$lj<P2.}א^(ep-_Y$8f8?%.~7> rcD[U纒E̲xi9#++h[ MkP*`* "όc o,&^Ni % 'a([BRLiD-=PдBMr{e[pަ|X*]@P߳Dh@%.uSQ_{dlG3B_m?m_qNB{XC%Ow{Xy3\x}^y.H4)_K 1 e_Ɓ1J`n[HlZfi̝Szi*_G.+hˏkQ*b-]*0 $ du aV{qeaDs&'qA`z!HQt񌞶W]yӌy6- =ryRz!S&MyS.W^RHsL B4hpbi+l a-,b^wc]FT嗀X>+2p,^fp< +j8]Vb}P-zhcQĩuB `|Ks-K +s9>vkSoϔeڞȲʥ}qyr$S/ SXXY?lXg`mz)%ie;򯜾?5&XYqR)-\ cï.fbzzZ:mSo Uy4w<< h#8;qC%4ˮ䪫D9~ ozjQ^ssUׯN]-(CƓZdXD3v%[UaZՙATV{oqSu@ %pS2uB1Bc}T۳[?MXQX~?ǶWJ>Lqķ C6/--_;؆P~kO( P>~O˖#[TxV0N{!">O8ukw/uyoJ@#zLvo[_o:uc|*to[]#75e5.U簲\\,&ۏm"4.7&1MDNkS-e|(,Ћؖe%Un/VΥz_<ƔIne=QW vJ}4fabzo˅y?Gynn+6߬<2Ek*+|ElS buMXC4!r}QZ\7`NL4Zm^:/K]M8q߬B?.ʴI9/ "ظL7*̼۪,[,JeUW&㙏ٖV6(hiZ}B 34 Ç@!sRXsp_\_[kslwr_buo3i$F:N1NzvgJ"V9'h1V.Jg[^kpK/>YK[[y1<:Y"Ci֪zb2%J f't+h ٿvFS2ԆV g5;2cVDE 0kاrLb3sVmcqt;lsW 8bߔ;Pf?2Zds??e?r|+يxyʖ ܨ*34!䨐Z}|~=ۤus<{أ?rr}_ʹ6 aZvkvطm}K5ٔa~T(i2̳Fq?gAn5?OB =B4g*O^* ]ȗT. ـ2Fp29VmDwCn,(17TN~YJP[uEn].e,9ЮLA Tc%c%D}9oʃ'إo{kvU5Pũ2Erc=(C9 ZƲ~?&{^B904۷_Mj{%V]q ?Bo6^f02Oٮg*+ f,qѠn)l@-sOu !4{n0>=N(+ Dʙϊ^(uu"`"p leIF^A )Zjf9&)E`D#vQYrekf,+ժ4R)yiqia)+9xϻh˦Gb[ظJF=":' 6.t0<B!G4[1Ue?afĥGqa(ZW-.[ {fn#eh9d\ 3c(L<SjʹX\/Ud}3R"Gh i٬'tȼU"/fBCp-M!Ze[+ eG9mEv唟KEJyѼ.1 hUSn'3?-bT(SUOg /}&by|=,곥fķߔKO+W'Wg? B/X/Ÿy3<^tQ1+o)._dMn_ :_HuZfqr|?nwM6 y{/}V唺RvϔE1g}B|)ƴ_c9PU|{r7+:9F:nYWα_?OO~B..cW!z-܃j[r=(~kM_9elOΣu,ٚ5֌dnz=LӆuߟkfTiFK\>?\^렡 =3⋝@nʗ`5/ ._b2X*䈶W*, lU:V-"P)LKıRG FLFSV+dYs 6qHaܦ<F7ʩ.jC>Y_ls/_S^kbEr\YsA-u/%ךXϼ+(/8YKe uWzKir 7|'pUBVwYտEemBH aviZL%n{LyzKg8-wlŬ*/_Gִ3Q=ˌj gw^ކGRy4xCnT [b*ԳO>&K熗_#drŅ_c꩛񛗁J\CA++2u2k(+)Vhd[h'7;T\\ߔ"c6tz gp~gIo뵒xYT1VpUEl(^DMZra_'2~{RTϟ'zSBeDW?u p+p?ԡ{[C_~sQog`|,zOx@-;79|wŖBH͉y]oPC_ Ui_>ky/ql}Cpnscmls}I8ӭ|!K"54. -Yg go@~,eVVs( |qeÿRzV,]Zʿ^6ۨl=c X)06|̆0,1 ՠbÔݔS9oos$Z^eYyٚ ,,Ħo%B*R ŒN:M_܋?`_P\cZy';g%!V*s&21nK<'r\;<mF˿ b[҄]nz و8y8!.3P To5j!M6mR |Ӕ7is)v[Z#8n\OBՃx[}WdP8h'8do:)Vo&ш'3H'mއ|֢}||VhVBYOjo~?/{X2mʮ/9,b_δ.]7en ~[6d9m̝r-g9g_~Qyğ8Wd[ hq^5iǚ[麨Y"fAntcu mbvuBe^j 6τV)UwXEebіW91Z)\-Ȋa;za6ΫxlG!d'Ի>5~M4 '[i_nhnls:1k3Y0p<VO1M3z=%5#1r܎7F$Y u[1';Nsge{-)iedWY42nEo;U/K6)~+/%Ÿoy])1XےR r <[Z45L.x%AB(᯽ 8~e\ןni:ָF6K2CJ:m i`˜oŠ짌 ,SΉUYOIV e.n]n/>[ h葋oz3qZnoq"2u|VybAf;ey2z_n"uL73qfS lزFm0/d[g'uK!ōb9ܿdoYc5PL)kya8 ?_z #‰k>Ně3Vz2Z)v#QMowiũJ^pM2 +e]'+pE&踾ɚ VK7;&SFmB꥔QXb0'jy$? B!dO3~3NjU[cڥ5-$;Y։eR n`s0M,MR` 7mٿu>{)p d'[ h]Ŵ[j$jA3ܳɤF\AF.DZ2I$W*0X 6+3Ԟʪ$Pu'YU4[/[h޹>r\g!.'ĸ-rJ[h|w*BSֻ:nLZ۹ !b6O Co&n5p= eI,׍߰^  eg=Vy䢠z #Ήk^yV;XM:"+S)ڊqBƊZLiRW6^-hh"3وly}3bv"9n  d7LsNx&/~aMY2\=u BSc}k֕w_bkO[Vy0]y: 7ˆPNF{F^ҿ*gz5,Ymh=XGȮ@Co4GO"tpZ5٫h[#5,/R⥊6Xm<-dZiC+۴̵ tv\xǪ0ǻzrh׭>2s^$(gٕ1{l !<ិ_vRY9~7̵`ܤo*gLM7E7Ukw`{-`V#/W`;έg>{4ACozdOIcnwFюC-ZW)BQgƹ"l˱!>:aTj| Cu ɝwlDoD_uDo|7Ri3?97A! N\S߈svT#{jB4&q Eqz^)gnYGC\ghz󇭬*&,Ǽ~~8O.4ACozd_8yϼog&K-EBsd&n;CږjfNX/n[UYom? &Tg6GgQwWNJ˯o=( |2 w}W꭭F+{t// rx ]2fZj\Wmēò,QZKEYi^wI{ֆ̲Xj1onmm[kĂ/ { u[Wmxi膫[Bg!$jOew\:m*_u[=^[VX[gU.o}\+Kw9Ie+O? ^K!h[Uk%W{H[MKx;2lttҚrT EXkjgfϖ(֟~y|b{*{.@)T 9߯^tqg|Ch譃4Ⱦs?:^7Ml^OFKmŏlCT -/cg[YNYutv$Gޗu* URtT-s?O ܲ }I.> B'n׻ ?6\J)P*rK2Ϙ:Жmhݷp\qP%[]rUǨf7ɴD+8W>˷ג}:h-@Cm|o'_3̾iϚc HkN]bSqB+k[,۳H/mWؕIt1\|`saM ]ڰJ$xn-T*qU3M/1:6fkCVM%Ϥq[*6W7r`ESlqmS_ 'ִb-M#{1DZOƜZy6BP,ZtiBRofo}:֨ɇ[B.ug$c2z_mSϘfim\4/F\O/vacNjX VMֺ31r։q7Q1ĜmyDBYn~Su?*slo?Q;qr/A+&;lӏٯ6uw^vɬݚz|c֫~̺vGrm"d{g#Q[{=NM B!"Nt%wue]/{Znc%%~eb{8-U;r7TPk7Mu-[QGN'M 5Xi1mAKu-f6r3r[D}u,hL?_cL /xRK! N3xl=MHT4MhmM븬ۤqHje%ScޙUL$cU]JIe^'*vg_,W٥\[ h˖7"$eRyl}ҕw8'u\am6ʴuhVK ے-j96[][[#B>妷3 I#|'a'JàB"OkO ]w.]ZⵍB<4g9.젡z #S7! @"<)ĺC1 ⷺ6# 4̱P]x}˱sV80=׆#B.Mw탹^c[%`Kf}.D/zms1=.q{;ZoIYH_Z忄\[ hbc-o{9*"|.̔tEnӒPKq@f?^ܨu^6 nkVaW~l(ǧZq׀ςB!i̽dqN$V{_dcBͱ-tN¢qX=͘z\Ͼp.%1 [! $s/{zeX%/sLz:Wj[Ia8""uئ6dy$Py C+dBt^$b۷ދNB6<b;w4Jal1W\n9 6n'o-d⥿4Q[ hǮq0_=w^i+못*[yȚUX.'&p[#B]%b_Wn2lq"vl$b:-|sPcٸ AkmmF+:,l&rN+*cY?8C$mgO F^GYh譃4HR˽S^wcyxRĞ;Lbn,Hբ͋ư)3/"tԍ-![$/K{iKC4 +_U9v|k=4弖seSZ0_-z렡 =Bv47-R+ vAcFeAhu30}dF2R˻s/ĂcB!d?Iijz\CyMvAjEV^މO#~|]2ӈ bz #d]uO-:/\wb$7dYw-ZȬ_IיvGJ3ǖwB9$C{0|Wt;2]Sjʩ d%Ӄaw #dz #I&_6Rkdž贈*E[tULn֖[畮 / :.{.;,;B!\$'oؕXJkZٮ37 [Vٺ̻޴{! u[!dluh 0.熏jlY7vudcZ%1fya"B!H_?{7}i}]9- `گnZz-J\6{zj*ӟy~̷C u[!B!B@Co[ B!B!hB!B!rG!B!B!B!B!GzB!B!!hB!B!r@B!B!dozB!B!Y B!B!-lz d"B!B{Bo=4` =B!B!zh-@CB!B!dz &B!B{i ^z B!B!doH[bB!B!m7 ^|EB!B!f[}B!B! g$[m B!B! ]94V¦B!B!?4V1&B!B=R*s9461!B!B!v H4!B!Bœ< cg#B!Bx{9ACoCsLSB!B!d礮;o<!B!BvFz(K]4v@2,B!B!dsdžR nL!B!䥼  uMD !B!BKSB!B!d\p]mw zI:!B!B!&7w{2B!B!$$y&ݸ%hB!B!h4vlD%B!B =. K!B!y{ = ?<!B!B.! M'q2*lm;%B!BȥIA{9K { =_wԻ+@!B!r)4 lR+Rꫯ_N!B!MjԐ/tŒe+bB!B!Gy  ^ꊛ >G!B!J~W@Z]kzHH^jB!B!Ij~rxwHHF8B}r/_B!B! vIw{%ᅆ!$]0#B!B!$Á!B!B9B#B!B!ACB!B!# =B!B!B4!B!B9B#B!B!ACB!B!# =B!B!B4!B!B9B#B!B!ACB!B!# =B!B!B4!B!B9B#B!B!ACB!B!# =B!B!B4!B!B9B#B!B!ACB!B!# =B!B!B4!B!B9B#B!B!ACB!B!# =B!B!B4!B!B9B#B!B!ACB!B!# =B!B!B4!B!B9B#B!B!ACB!B!# =B!B!B4!B!B9B#B!B!ACB!B!# =B!B!B4!B!B9B#B!B!BxB!B!CO܊ۑ!B!B!GGV!B!B!GG:[ B!B!z"!B!B!OW1!B!B!pc_۷!B!B!3 zW_y/B!B!rxϦ?裏>#B!B!0?zM򴫮gCOB!B!rxx4K,x'}=}s B!B!B|cؿ__&=gn!B!B!@I/=s_y-QB!B!BǾػ-oѫ@!B!B9'}? sr-@!B!Bnr/[o=p#7wwB!B!'';3̼[nKt;vݽ:cB!B!Vy~?'/ ؀WnڏvkB!B!ѷȋ Ov_otޏtޏfdFDv%B!B!0wOv^Zz'Ks=bk< dh.(IENDB`vcrpy-6.0.1/vcr/000077500000000000000000000000001455450430400134575ustar00rootroot00000000000000vcrpy-6.0.1/vcr/__init__.py000066400000000000000000000004161455450430400155710ustar00rootroot00000000000000import logging from logging import NullHandler from .config import VCR from .record_mode import RecordMode as mode # noqa: F401 __version__ = "6.0.1" logging.getLogger(__name__).addHandler(NullHandler()) default_vcr = VCR() use_cassette = default_vcr.use_cassette vcrpy-6.0.1/vcr/_handle_coroutine.py000066400000000000000000000001411455450430400175060ustar00rootroot00000000000000async def handle_coroutine(vcr, fn): with vcr as cassette: return await fn(cassette) vcrpy-6.0.1/vcr/cassette.py000066400000000000000000000320021455450430400156410ustar00rootroot00000000000000import collections import contextlib import copy import inspect import logging from asyncio import iscoroutinefunction import wrapt from ._handle_coroutine import handle_coroutine from .errors import UnhandledHTTPRequestError from .matchers import get_matchers_results, method, requests_match, uri from .patch import CassettePatcherBuilder from .persisters.filesystem import CassetteDecodeError, CassetteNotFoundError, FilesystemPersister from .record_mode import RecordMode from .serializers import yamlserializer from .util import partition_dict log = logging.getLogger(__name__) class CassetteContextDecorator: """Context manager/decorator that handles installing the cassette and removing cassettes. This class defers the creation of a new cassette instance until the point at which it is installed by context manager or decorator. The fact that a new cassette is used with each application prevents the state of any cassette from interfering with another. Instances of this class are NOT reentrant as context managers. However, functions that are decorated by ``CassetteContextDecorator`` instances ARE reentrant. See the implementation of ``__call__`` on this class for more details. There is also a guard against attempts to reenter instances of this class as a context manager in ``__exit__``. """ _non_cassette_arguments = ( "path_transformer", "func_path_generator", "record_on_exception", ) @classmethod def from_args(cls, cassette_class, **kwargs): return cls(cassette_class, lambda: dict(kwargs)) def __init__(self, cls, args_getter): self.cls = cls self._args_getter = args_getter self.__finish = None self.__cassette = None def _patch_generator(self, cassette): with contextlib.ExitStack() as exit_stack: for patcher in CassettePatcherBuilder(cassette).build(): exit_stack.enter_context(patcher) log_format = "{action} context for cassette at {path}." log.debug(log_format.format(action="Entering", path=cassette._path)) yield cassette log.debug(log_format.format(action="Exiting", path=cassette._path)) def __enter__(self): # This assertion is here to prevent the dangerous behavior # that would result from forgetting about a __finish before # completing it. # How might this condition be met? Here is an example: # context_decorator = Cassette.use('whatever') # with context_decorator: # with context_decorator: # pass assert self.__finish is None, "Cassette already open." other_kwargs, cassette_kwargs = partition_dict( lambda key, _: key in self._non_cassette_arguments, self._args_getter(), ) if other_kwargs.get("path_transformer"): transformer = other_kwargs["path_transformer"] cassette_kwargs["path"] = transformer(cassette_kwargs["path"]) self.__cassette = self.cls.load(**cassette_kwargs) self.__finish = self._patch_generator(self.__cassette) return next(self.__finish) def __exit__(self, *exc_info): exception_was_raised = any(exc_info) record_on_exception = self._args_getter().get("record_on_exception", True) if record_on_exception or not exception_was_raised: self.__cassette._save() self.__cassette = None # Fellow programmer, don't remove this `next`, if `self.__finish` is # not consumed the unpatcher functions accumulated in the `exit_stack` # object created in `_patch_generator` will not be called until # `exit_stack` is not garbage collected. # This works in CPython but not in Pypy, where the unpatchers will not # be called until much later. next(self.__finish, None) self.__finish = None @wrapt.decorator def __call__(self, function, instance, args, kwargs): # This awkward cloning thing is done to ensure that decorated # functions are reentrant. This is required for thread # safety and the correct operation of recursive functions. args_getter = self._build_args_getter_for_decorator(function) return type(self)(self.cls, args_getter)._execute_function(function, args, kwargs) def _execute_function(self, function, args, kwargs): def handle_function(cassette): if cassette.inject: return function(cassette, *args, **kwargs) else: return function(*args, **kwargs) if iscoroutinefunction(function): return handle_coroutine(vcr=self, fn=handle_function) if inspect.isgeneratorfunction(function): return self._handle_generator(fn=handle_function) return self._handle_function(fn=handle_function) def _handle_generator(self, fn): """Wraps a generator so that we're inside the cassette context for the duration of the generator. """ with self as cassette: return (yield from fn(cassette)) def _handle_function(self, fn): with self as cassette: return fn(cassette) @staticmethod def get_function_name(function): return function.__name__ def _build_args_getter_for_decorator(self, function): def new_args_getter(): kwargs = self._args_getter() if "path" not in kwargs: name_generator = kwargs.get("func_path_generator") or self.get_function_name path = name_generator(function) kwargs["path"] = path return kwargs return new_args_getter class Cassette: """A container for recorded requests and responses""" @classmethod def load(cls, **kwargs): """Instantiate and load the cassette stored at the specified path.""" new_cassette = cls(**kwargs) new_cassette._load() return new_cassette @classmethod def use_arg_getter(cls, arg_getter): return CassetteContextDecorator(cls, arg_getter) @classmethod def use(cls, **kwargs): return CassetteContextDecorator.from_args(cls, **kwargs) def __init__( self, path, serializer=None, persister=None, record_mode=RecordMode.ONCE, match_on=(uri, method), before_record_request=None, before_record_response=None, custom_patches=(), inject=False, allow_playback_repeats=False, ): self._persister = persister or FilesystemPersister self._path = path self._serializer = serializer or yamlserializer self._match_on = match_on self._before_record_request = before_record_request or (lambda x: x) log.info(self._before_record_request) self._before_record_response = before_record_response or (lambda x: x) self.inject = inject self.record_mode = record_mode self.custom_patches = custom_patches self.allow_playback_repeats = allow_playback_repeats # self.data is the list of (req, resp) tuples self.data = [] self.play_counts = collections.Counter() self.dirty = False self.rewound = False @property def play_count(self): return sum(self.play_counts.values()) @property def all_played(self): """Returns True if all responses have been played, False otherwise.""" return len(self.play_counts.values()) == len(self) @property def requests(self): return [request for (request, response) in self.data] @property def responses(self): return [response for (request, response) in self.data] @property def write_protected(self): return self.rewound and self.record_mode == RecordMode.ONCE or self.record_mode == RecordMode.NONE def append(self, request, response): """Add a request, response pair to this cassette""" log.info("Appending request %s and response %s", request, response) request = self._before_record_request(request) if not request: return # Deepcopy is here because mutation of `response` will corrupt the # real response. response = copy.deepcopy(response) response = self._before_record_response(response) if response is None: return self.data.append((request, response)) self.dirty = True def filter_request(self, request): return self._before_record_request(request) def _responses(self, request): """ internal API, returns an iterator with all responses matching the request. """ request = self._before_record_request(request) for index, (stored_request, response) in enumerate(self.data): if requests_match(request, stored_request, self._match_on): yield index, response def can_play_response_for(self, request): request = self._before_record_request(request) return request and request in self and self.record_mode != RecordMode.ALL and self.rewound def play_response(self, request): """ Get the response corresponding to a request, but only if it hasn't been played back before, and mark it as played """ for index, response in self._responses(request): if self.play_counts[index] == 0 or self.allow_playback_repeats: self.play_counts[index] += 1 return response # The cassette doesn't contain the request asked for. raise UnhandledHTTPRequestError( f"The cassette ({self._path!r}) doesn't contain the request ({request!r}) asked for", ) def responses_of(self, request): """ Find the responses corresponding to a request. This function isn't actually used by VCR internally, but is provided as an external API. """ responses = [response for index, response in self._responses(request)] if responses: return responses # The cassette doesn't contain the request asked for. raise UnhandledHTTPRequestError( f"The cassette ({self._path!r}) doesn't contain the request ({request!r}) asked for", ) def rewind(self): self.play_counts = collections.Counter() def find_requests_with_most_matches(self, request): """ Get the most similar request(s) stored in the cassette of a given request as a list of tuples like this: - the request object - the successful matchers as string - the failed matchers and the related assertion message with the difference details as strings tuple This is useful when a request failed to be found, we can get the similar request(s) in order to know what have changed in the request parts. """ best_matches = [] request = self._before_record_request(request) for _, (stored_request, _) in enumerate(self.data): successes, fails = get_matchers_results(request, stored_request, self._match_on) best_matches.append((len(successes), stored_request, successes, fails)) best_matches.sort(key=lambda t: t[0], reverse=True) # Get the first best matches (multiple if equal matches) final_best_matches = [] if not best_matches: return final_best_matches previous_nb_success = best_matches[0][0] for best_match in best_matches: nb_success = best_match[0] # Do not keep matches that have 0 successes, # it means that the request is totally different from # the ones stored in the cassette if nb_success < 1 or previous_nb_success != nb_success: break previous_nb_success = nb_success final_best_matches.append(best_match[1:]) return final_best_matches def _as_dict(self): return {"requests": self.requests, "responses": self.responses} def _save(self, force=False): if force or self.dirty: self._persister.save_cassette(self._path, self._as_dict(), serializer=self._serializer) self.dirty = False def _load(self): try: requests, responses = self._persister.load_cassette(self._path, serializer=self._serializer) for request, response in zip(requests, responses): self.append(request, response) self.dirty = False self.rewound = True except (CassetteDecodeError, CassetteNotFoundError): pass def __str__(self): return f"" def __len__(self): """Return the number of request,response pairs stored in here""" return len(self.data) def __contains__(self, request): """Return whether or not a request has been stored""" for index, _ in self._responses(request): if self.play_counts[index] == 0 or self.allow_playback_repeats: return True return False vcrpy-6.0.1/vcr/config.py000066400000000000000000000251061455450430400153020ustar00rootroot00000000000000import copy import functools import inspect import os import types from collections import abc as collections_abc from pathlib import Path from . import filters, matchers from .cassette import Cassette from .persisters.filesystem import FilesystemPersister from .record_mode import RecordMode from .serializers import jsonserializer, yamlserializer from .util import auto_decorate, compose class VCR: @staticmethod def is_test_method(method_name, function): return method_name.startswith("test") and isinstance(function, types.FunctionType) @staticmethod def ensure_suffix(suffix): def ensure(path): if not path.endswith(suffix): return path + suffix return path return ensure def __init__( self, path_transformer=None, before_record_request=None, custom_patches=(), filter_query_parameters=(), ignore_hosts=(), record_mode=RecordMode.ONCE, ignore_localhost=False, filter_headers=(), before_record_response=None, filter_post_data_parameters=(), match_on=("method", "scheme", "host", "port", "path", "query"), before_record=None, inject_cassette=False, serializer="yaml", cassette_library_dir=None, func_path_generator=None, decode_compressed_response=False, record_on_exception=True, ): self.serializer = serializer self.match_on = match_on self.cassette_library_dir = cassette_library_dir self.serializers = {"yaml": yamlserializer, "json": jsonserializer} self.matchers = { "method": matchers.method, "uri": matchers.uri, "url": matchers.uri, # matcher for backwards compatibility "scheme": matchers.scheme, "host": matchers.host, "port": matchers.port, "path": matchers.path, "query": matchers.query, "headers": matchers.headers, "raw_body": matchers.raw_body, "body": matchers.body, } self.persister = FilesystemPersister self.record_mode = record_mode self.filter_headers = filter_headers self.filter_query_parameters = filter_query_parameters self.filter_post_data_parameters = filter_post_data_parameters self.before_record_request = before_record_request or before_record self.before_record_response = before_record_response self.ignore_hosts = ignore_hosts self.ignore_localhost = ignore_localhost self.inject_cassette = inject_cassette self.path_transformer = path_transformer self.func_path_generator = func_path_generator self.decode_compressed_response = decode_compressed_response self.record_on_exception = record_on_exception self._custom_patches = tuple(custom_patches) def _get_serializer(self, serializer_name): try: serializer = self.serializers[serializer_name] except KeyError: raise KeyError(f"Serializer {serializer_name} doesn't exist or isn't registered") from None return serializer def _get_matchers(self, matcher_names): matchers = [] try: for m in matcher_names: matchers.append(self.matchers[m]) except KeyError: raise KeyError(f"Matcher {m} doesn't exist or isn't registered") from None return matchers def use_cassette(self, path=None, **kwargs): if path is not None and not isinstance(path, (str, Path)): function = path # Assume this is an attempt to decorate a function return self._use_cassette(**kwargs)(function) return self._use_cassette(path=path, **kwargs) def _use_cassette(self, with_current_defaults=False, **kwargs): if with_current_defaults: config = self.get_merged_config(**kwargs) return Cassette.use(**config) # This is made a function that evaluates every time a cassette # is made so that changes that are made to this VCR instance # that occur AFTER the `use_cassette` decorator is applied # still affect subsequent calls to the decorated function. args_getter = functools.partial(self.get_merged_config, **kwargs) return Cassette.use_arg_getter(args_getter) def get_merged_config(self, **kwargs): serializer_name = kwargs.get("serializer", self.serializer) matcher_names = kwargs.get("match_on", self.match_on) path_transformer = kwargs.get("path_transformer", self.path_transformer) func_path_generator = kwargs.get("func_path_generator", self.func_path_generator) cassette_library_dir = kwargs.get("cassette_library_dir", self.cassette_library_dir) additional_matchers = kwargs.get("additional_matchers", ()) record_on_exception = kwargs.get("record_on_exception", self.record_on_exception) if cassette_library_dir: def add_cassette_library_dir(path): if not path.startswith(cassette_library_dir): return os.path.join(cassette_library_dir, path) return path path_transformer = compose(add_cassette_library_dir, path_transformer) elif not func_path_generator: # If we don't have a library dir, use the functions # location to build a full path for cassettes. func_path_generator = self._build_path_from_func_using_module merged_config = { "serializer": self._get_serializer(serializer_name), "persister": self.persister, "match_on": self._get_matchers(tuple(matcher_names) + tuple(additional_matchers)), "record_mode": kwargs.get("record_mode", self.record_mode), "before_record_request": self._build_before_record_request(kwargs), "before_record_response": self._build_before_record_response(kwargs), "custom_patches": self._custom_patches + kwargs.get("custom_patches", ()), "inject": kwargs.get("inject_cassette", self.inject_cassette), "path_transformer": path_transformer, "func_path_generator": func_path_generator, "allow_playback_repeats": kwargs.get("allow_playback_repeats", False), "record_on_exception": record_on_exception, } path = kwargs.get("path") if path: merged_config["path"] = path return merged_config def _build_before_record_response(self, options): before_record_response = options.get("before_record_response", self.before_record_response) decode_compressed_response = options.get( "decode_compressed_response", self.decode_compressed_response, ) filter_functions = [] if decode_compressed_response: filter_functions.append(filters.decode_response) if before_record_response: if not isinstance(before_record_response, collections_abc.Iterable): before_record_response = (before_record_response,) filter_functions.extend(before_record_response) def before_record_response(response): for function in filter_functions: if response is None: break response = function(response) return response return before_record_response def _build_before_record_request(self, options): filter_functions = [] filter_headers = options.get("filter_headers", self.filter_headers) filter_query_parameters = options.get("filter_query_parameters", self.filter_query_parameters) filter_post_data_parameters = options.get( "filter_post_data_parameters", self.filter_post_data_parameters, ) before_record_request = options.get( "before_record_request", options.get("before_record", self.before_record_request), ) ignore_hosts = options.get("ignore_hosts", self.ignore_hosts) ignore_localhost = options.get("ignore_localhost", self.ignore_localhost) if filter_headers: replacements = [h if isinstance(h, tuple) else (h, None) for h in filter_headers] filter_functions.append(functools.partial(filters.replace_headers, replacements=replacements)) if filter_query_parameters: replacements = [p if isinstance(p, tuple) else (p, None) for p in filter_query_parameters] filter_functions.append( functools.partial(filters.replace_query_parameters, replacements=replacements), ) if filter_post_data_parameters: replacements = [p if isinstance(p, tuple) else (p, None) for p in filter_post_data_parameters] filter_functions.append( functools.partial(filters.replace_post_data_parameters, replacements=replacements), ) hosts_to_ignore = set(ignore_hosts) if ignore_localhost: hosts_to_ignore.update(("localhost", "0.0.0.0", "127.0.0.1")) if hosts_to_ignore: filter_functions.append(self._build_ignore_hosts(hosts_to_ignore)) if before_record_request: if not isinstance(before_record_request, collections_abc.Iterable): before_record_request = (before_record_request,) filter_functions.extend(before_record_request) def before_record_request(request): request = copy.deepcopy(request) for function in filter_functions: if request is None: break request = function(request) return request return before_record_request @staticmethod def _build_ignore_hosts(hosts_to_ignore): def filter_ignored_hosts(request): if hasattr(request, "host") and request.host in hosts_to_ignore: return return request return filter_ignored_hosts @staticmethod def _build_path_from_func_using_module(function): return os.path.join(os.path.dirname(inspect.getfile(function)), function.__name__) def register_serializer(self, name, serializer): self.serializers[name] = serializer def register_matcher(self, name, matcher): self.matchers[name] = matcher def register_persister(self, persister): # Singleton, no name required self.persister = persister def test_case(self, predicate=None): predicate = predicate or self.is_test_method metaclass = auto_decorate(self.use_cassette, predicate) return metaclass("temporary_class", (), {}) vcrpy-6.0.1/vcr/errors.py000066400000000000000000000036531455450430400153540ustar00rootroot00000000000000class CannotOverwriteExistingCassetteException(Exception): def __init__(self, *args, **kwargs): self.cassette = kwargs["cassette"] self.failed_request = kwargs["failed_request"] message = self._get_message(kwargs["cassette"], kwargs["failed_request"]) super().__init__(message) @staticmethod def _get_message(cassette, failed_request): """Get the final message related to the exception""" # Get the similar requests in the cassette that # have match the most with the request. best_matches = cassette.find_requests_with_most_matches(failed_request) if best_matches: # Build a comprehensible message to put in the exception. best_matches_msg = ( f"Found {len(best_matches)} similar requests " f"with {len(best_matches[0][2])} different matcher(s) :\n" ) for idx, best_match in enumerate(best_matches, start=1): request, succeeded_matchers, failed_matchers_assertion_msgs = best_match best_matches_msg += ( f"\n{idx} - ({request!r}).\n" f"Matchers succeeded : {succeeded_matchers}\n" "Matchers failed :\n" ) for failed_matcher, assertion_msg in failed_matchers_assertion_msgs: best_matches_msg += f"{failed_matcher} - assertion failure :\n{assertion_msg}\n" else: best_matches_msg = "No similar requests, that have not been played, found." return ( f"Can't overwrite existing cassette ({cassette._path!r}) in " f"your current record mode ({cassette.record_mode!r}).\n" f"No match for the request ({failed_request!r}) was found.\n" f"{best_matches_msg}" ) class UnhandledHTTPRequestError(KeyError): """Raised when a cassette does not contain the request we want.""" vcrpy-6.0.1/vcr/filters.py000066400000000000000000000153571455450430400155140ustar00rootroot00000000000000import copy import json import zlib from io import BytesIO from urllib.parse import urlencode, urlparse, urlunparse from .util import CaseInsensitiveDict def replace_headers(request, replacements): """Replace headers in request according to replacements. The replacements should be a list of (key, value) pairs where the value can be any of: 1. A simple replacement string value. 2. None to remove the given header. 3. A callable which accepts (key, value, request) and returns a string value or None. """ new_headers = request.headers.copy() for k, rv in replacements: if k in new_headers: ov = new_headers.pop(k) if callable(rv): rv = rv(key=k, value=ov, request=request) if rv is not None: new_headers[k] = rv request.headers = new_headers return request def remove_headers(request, headers_to_remove): """ Wrap replace_headers() for API backward compatibility. """ replacements = [(k, None) for k in headers_to_remove] return replace_headers(request, replacements) def replace_query_parameters(request, replacements): """Replace query parameters in request according to replacements. The replacements should be a list of (key, value) pairs where the value can be any of: 1. A simple replacement string value. 2. None to remove the given header. 3. A callable which accepts (key, value, request) and returns a string value or None. """ query = request.query new_query = [] replacements = dict(replacements) for k, ov in query: if k not in replacements: new_query.append((k, ov)) else: rv = replacements[k] if callable(rv): rv = rv(key=k, value=ov, request=request) if rv is not None: new_query.append((k, rv)) uri_parts = list(urlparse(request.uri)) uri_parts[4] = urlencode(new_query) request.uri = urlunparse(uri_parts) return request def remove_query_parameters(request, query_parameters_to_remove): """ Wrap replace_query_parameters() for API backward compatibility. """ replacements = [(k, None) for k in query_parameters_to_remove] return replace_query_parameters(request, replacements) def replace_post_data_parameters(request, replacements): """Replace post data in request--either form data or json--according to replacements. The replacements should be a list of (key, value) pairs where the value can be any of: 1. A simple replacement string value. 2. None to remove the given header. 3. A callable which accepts (key, value, request) and returns a string value or None. """ if not request.body: # Nothing to replace return request replacements = dict(replacements) if request.method == "POST" and not isinstance(request.body, BytesIO): if isinstance(request.body, dict): new_body = request.body.copy() for k, rv in replacements.items(): if k in new_body: ov = new_body.pop(k) if callable(rv): rv = rv(key=k, value=ov, request=request) if rv is not None: new_body[k] = rv request.body = new_body elif request.headers.get("Content-Type") == "application/json": json_data = json.loads(request.body) for k, rv in replacements.items(): if k in json_data: ov = json_data.pop(k) if callable(rv): rv = rv(key=k, value=ov, request=request) if rv is not None: json_data[k] = rv request.body = json.dumps(json_data).encode("utf-8") else: if isinstance(request.body, str): request.body = request.body.encode("utf-8") splits = [p.partition(b"=") for p in request.body.split(b"&")] new_splits = [] for k, sep, ov in splits: if sep is None: new_splits.append((k, sep, ov)) else: rk = k.decode("utf-8") if rk not in replacements: new_splits.append((k, sep, ov)) else: rv = replacements[rk] if callable(rv): rv = rv(key=rk, value=ov.decode("utf-8"), request=request) if rv is not None: new_splits.append((k, sep, rv.encode("utf-8"))) request.body = b"&".join(k if sep is None else b"".join([k, sep, v]) for k, sep, v in new_splits) return request def remove_post_data_parameters(request, post_data_parameters_to_remove): """ Wrap replace_post_data_parameters() for API backward compatibility. """ replacements = [(k, None) for k in post_data_parameters_to_remove] return replace_post_data_parameters(request, replacements) def decode_response(response): """ If the response is compressed with gzip or deflate: 1. decompress the response body 2. delete the content-encoding header 3. update content-length header to decompressed length """ def is_compressed(headers): encoding = headers.get("content-encoding", []) return encoding and encoding[0] in ("gzip", "deflate") def decompress_body(body, encoding): """Returns decompressed body according to encoding using zlib. to (de-)compress gzip format, use wbits = zlib.MAX_WBITS | 16 """ if not body: return "" if encoding == "gzip": try: return zlib.decompress(body, zlib.MAX_WBITS | 16) except zlib.error: return body # assumes that the data was already decompressed else: # encoding == 'deflate' try: return zlib.decompress(body) except zlib.error: return body # assumes that the data was already decompressed # Deepcopy here in case `headers` contain objects that could # be mutated by a shallow copy and corrupt the real response. response = copy.deepcopy(response) headers = CaseInsensitiveDict(response["headers"]) if is_compressed(headers): encoding = headers["content-encoding"][0] headers["content-encoding"].remove(encoding) if not headers["content-encoding"]: del headers["content-encoding"] new_body = decompress_body(response["body"]["string"], encoding) response["body"]["string"] = new_body headers["content-length"] = [str(len(new_body))] response["headers"] = dict(headers) return response vcrpy-6.0.1/vcr/matchers.py000066400000000000000000000137301455450430400156430ustar00rootroot00000000000000import json import logging import urllib import xmlrpc.client from string import hexdigits from typing import List, Set from .util import read_body _HEXDIG_CODE_POINTS: Set[int] = {ord(s.encode("ascii")) for s in hexdigits} log = logging.getLogger(__name__) def method(r1, r2): if r1.method != r2.method: raise AssertionError(f"{r1.method} != {r2.method}") def uri(r1, r2): if r1.uri != r2.uri: raise AssertionError(f"{r1.uri} != {r2.uri}") def host(r1, r2): if r1.host != r2.host: raise AssertionError(f"{r1.host} != {r2.host}") def scheme(r1, r2): if r1.scheme != r2.scheme: raise AssertionError(f"{r1.scheme} != {r2.scheme}") def port(r1, r2): if r1.port != r2.port: raise AssertionError(f"{r1.port} != {r2.port}") def path(r1, r2): if r1.path != r2.path: raise AssertionError(f"{r1.path} != {r2.path}") def query(r1, r2): if r1.query != r2.query: raise AssertionError(f"{r1.query} != {r2.query}") def raw_body(r1, r2): if read_body(r1) != read_body(r2): raise AssertionError def body(r1, r2): transformers = list(_get_transformers(r1)) if transformers != list(_get_transformers(r2)): transformers = [] b1 = read_body(r1) b2 = read_body(r2) for transform in transformers: b1 = transform(b1) b2 = transform(b2) if b1 != b2: raise AssertionError def headers(r1, r2): if r1.headers != r2.headers: raise AssertionError(f"{r1.headers} != {r2.headers}") def _header_checker(value, header="Content-Type"): def checker(headers): _header = headers.get(header, "") if isinstance(_header, bytes): _header = _header.decode("utf-8") return value in _header.lower() return checker def _dechunk(body): if isinstance(body, str): body = body.encode("utf-8") elif isinstance(body, bytearray): body = bytes(body) elif hasattr(body, "__iter__"): body = list(body) if body: if isinstance(body[0], str): body = ("".join(body)).encode("utf-8") elif isinstance(body[0], bytes): body = b"".join(body) elif isinstance(body[0], int): body = bytes(body) else: raise ValueError(f"Body chunk type {type(body[0])} not supported") else: body = None if not isinstance(body, bytes): return body # Now decode chunked data format (https://en.wikipedia.org/wiki/Chunked_transfer_encoding) # Example input: b"45\r\n<69 bytes>\r\n0\r\n\r\n" where int(b"45", 16) == 69. CHUNK_GAP = b"\r\n" BODY_LEN: int = len(body) chunks: List[bytes] = [] pos: int = 0 while True: for i in range(pos, BODY_LEN): if body[i] not in _HEXDIG_CODE_POINTS: break if i == 0 or body[i : i + len(CHUNK_GAP)] != CHUNK_GAP: if pos == 0: return body # i.e. assume non-chunk data raise ValueError("Malformed chunked data") size_bytes = int(body[pos:i], 16) if size_bytes == 0: # i.e. well-formed ending return b"".join(chunks) chunk_data_first = i + len(CHUNK_GAP) chunk_data_after_last = chunk_data_first + size_bytes if body[chunk_data_after_last : chunk_data_after_last + len(CHUNK_GAP)] != CHUNK_GAP: raise ValueError("Malformed chunked data") chunk_data = body[chunk_data_first:chunk_data_after_last] chunks.append(chunk_data) pos = chunk_data_after_last + len(CHUNK_GAP) def _transform_json(body): if body: return json.loads(body) _xml_header_checker = _header_checker("text/xml") _xmlrpc_header_checker = _header_checker("xmlrpc", header="User-Agent") _checker_transformer_pairs = ( (_header_checker("chunked", header="Transfer-Encoding"), _dechunk), ( _header_checker("application/x-www-form-urlencoded"), lambda body: urllib.parse.parse_qs(body.decode("ascii")), ), (_header_checker("application/json"), _transform_json), (lambda request: _xml_header_checker(request) and _xmlrpc_header_checker(request), xmlrpc.client.loads), ) def _get_transformers(request): for checker, transformer in _checker_transformer_pairs: if checker(request.headers): yield transformer def requests_match(r1, r2, matchers): successes, failures = get_matchers_results(r1, r2, matchers) if failures: log.debug(f"Requests {r1} and {r2} differ.\nFailure details:\n{failures}") return len(failures) == 0 def _evaluate_matcher(matcher_function, *args): """ Evaluate the result of a given matcher as a boolean with an assertion error message if any. It handles two types of matcher : - a matcher returning a boolean value. - a matcher that only makes an assert, returning None or raises an assertion error. """ assertion_message = None try: match = matcher_function(*args) match = True if match is None else match except AssertionError as e: match = False assertion_message = str(e) return match, assertion_message def get_matchers_results(r1, r2, matchers): """ Get the comparison results of two requests as two list. The first returned list represents the matchers names that passed. The second list is the failed matchers as a string with failed assertion details if any. """ matches_success, matches_fails = [], [] for m in matchers: matcher_name = m.__name__ match, assertion_message = _evaluate_matcher(m, r1, r2) if match: matches_success.append(matcher_name) else: assertion_message = get_assertion_message(assertion_message) matches_fails.append((matcher_name, assertion_message)) return matches_success, matches_fails def get_assertion_message(assertion_details): """ Get a detailed message about the failing matcher. """ return assertion_details vcrpy-6.0.1/vcr/migration.py000066400000000000000000000110011455450430400160130ustar00rootroot00000000000000""" Migration script for old 'yaml' and 'json' cassettes .. warning:: Backup your cassettes files before migration. It merges and deletes the request obsolete keys (protocol, host, port, path) into new 'uri' key. Usage:: python3 -m vcr.migration PATH The PATH can be path to the directory with cassettes or cassette itself """ import json import os import shutil import sys import tempfile import yaml from . import request from .serialize import serialize from .serializers import jsonserializer, yamlserializer from .stubs.compat import get_httpmessage # Use the libYAML versions if possible try: from yaml import CLoader as Loader except ImportError: from yaml import Loader def preprocess_yaml(cassette): # this is the hack that makes the whole thing work. The old version used # to deserialize to Request objects automatically using pyYaml's !!python # tag system. This made it difficult to deserialize old cassettes on new # versions. So this just strips the tags before deserializing. STRINGS_TO_NUKE = [ "!!python/object:vcr.request.Request", "!!python/object/apply:__builtin__.frozenset", "!!python/object/apply:builtins.frozenset", ] for s in STRINGS_TO_NUKE: cassette = cassette.replace(s, "") return cassette PARTS = ["protocol", "host", "port", "path"] def build_uri(**parts): port = parts["port"] scheme = parts["protocol"] default_port = {"https": 443, "http": 80}[scheme] parts["port"] = f":{port}" if port != default_port else "" return "{protocol}://{host}{port}{path}".format(**parts) def _migrate(data): interactions = [] for item in data: req = item["request"] res = item["response"] uri = {k: req.pop(k) for k in PARTS} req["uri"] = build_uri(**uri) # convert headers to dict of lists headers = req["headers"] for k in headers: headers[k] = [headers[k]] response_headers = {} for k, v in get_httpmessage(b"".join(h.encode("utf-8") for h in res["headers"])).items(): response_headers.setdefault(k, []) response_headers[k].append(v) res["headers"] = response_headers interactions.append({"request": req, "response": res}) return { "requests": [request.Request._from_dict(i["request"]) for i in interactions], "responses": [i["response"] for i in interactions], } def migrate_json(in_fp, out_fp): data = json.load(in_fp) if _already_migrated(data): return False interactions = _migrate(data) out_fp.write(serialize(interactions, jsonserializer)) return True def _list_of_tuples_to_dict(fs): return dict(fs[0]) def _already_migrated(data): try: if data.get("version") == 1: return True except AttributeError: return False def migrate_yml(in_fp, out_fp): data = yaml.load(preprocess_yaml(in_fp.read()), Loader=Loader) if _already_migrated(data): return False for i in range(len(data)): data[i]["request"]["headers"] = _list_of_tuples_to_dict(data[i]["request"]["headers"]) interactions = _migrate(data) out_fp.write(serialize(interactions, yamlserializer)) return True def migrate(file_path, migration_fn): # because we assume that original files can be reverted # we will try to copy the content. (os.rename not needed) with tempfile.TemporaryFile(mode="w+") as out_fp: with open(file_path) as in_fp: if not migration_fn(in_fp, out_fp): return False with open(file_path, "w") as in_fp: out_fp.seek(0) shutil.copyfileobj(out_fp, in_fp) return True def try_migrate(path): if path.endswith(".json"): return migrate(path, migrate_json) elif path.endswith((".yaml", ".yml")): return migrate(path, migrate_yml) return False def main(): if len(sys.argv) != 2: raise SystemExit( "Please provide path to cassettes directory or file. Usage: python3 -m vcr.migration PATH", ) path = sys.argv[1] if not os.path.isabs(path): path = os.path.abspath(path) files = [path] if os.path.isdir(path): files = (os.path.join(root, name) for (root, dirs, files) in os.walk(path) for name in files) for file_path in files: migrated = try_migrate(file_path) status = "OK" if migrated else "FAIL" sys.stderr.write(f"[{status}] {file_path}\n") sys.stderr.write("Done.\n") if __name__ == "__main__": main() vcrpy-6.0.1/vcr/patch.py000066400000000000000000000414431455450430400151360ustar00rootroot00000000000000"""Utilities for patching in cassettes""" import contextlib import functools import http.client as httplib import itertools import logging from unittest import mock from .stubs import VCRHTTPConnection, VCRHTTPSConnection log = logging.getLogger(__name__) # Save some of the original types for the purposes of unpatching _HTTPConnection = httplib.HTTPConnection _HTTPSConnection = httplib.HTTPSConnection # Try to save the original types for boto3 try: from botocore.awsrequest import AWSHTTPConnection, AWSHTTPSConnection except ImportError as e: try: import botocore.vendored.requests # noqa: F401 except ImportError: # pragma: no cover pass else: raise RuntimeError( "vcrpy >=4.2.2 and botocore <1.11.0 are not compatible" "; please upgrade botocore (or downgrade vcrpy)", ) from e else: _Boto3VerifiedHTTPSConnection = AWSHTTPSConnection _cpoolBoto3HTTPConnection = AWSHTTPConnection _cpoolBoto3HTTPSConnection = AWSHTTPSConnection cpool = None conn = None # Try to save the original types for urllib3 try: import urllib3.connection as conn import urllib3.connectionpool as cpool except ImportError: # pragma: no cover pass else: _VerifiedHTTPSConnection = conn.VerifiedHTTPSConnection _connHTTPConnection = conn.HTTPConnection _connHTTPSConnection = conn.HTTPSConnection # Try to save the original types for requests try: import requests except ImportError: # pragma: no cover pass else: if requests.__build__ < 0x021602: raise RuntimeError( "vcrpy >=4.2.2 and requests <2.16.2 are not compatible" "; please upgrade requests (or downgrade vcrpy)", ) # Try to save the original types for httplib2 try: import httplib2 except ImportError: # pragma: no cover pass else: _HTTPConnectionWithTimeout = httplib2.HTTPConnectionWithTimeout _HTTPSConnectionWithTimeout = httplib2.HTTPSConnectionWithTimeout _SCHEME_TO_CONNECTION = httplib2.SCHEME_TO_CONNECTION # Try to save the original types for Tornado try: import tornado.simple_httpclient except ImportError: # pragma: no cover pass else: _SimpleAsyncHTTPClient_fetch_impl = tornado.simple_httpclient.SimpleAsyncHTTPClient.fetch_impl try: import tornado.curl_httpclient except ImportError: # pragma: no cover pass else: _CurlAsyncHTTPClient_fetch_impl = tornado.curl_httpclient.CurlAsyncHTTPClient.fetch_impl try: import aiohttp.client except ImportError: # pragma: no cover pass else: _AiohttpClientSessionRequest = aiohttp.client.ClientSession._request try: import httpx except ImportError: # pragma: no cover pass else: _HttpxSyncClient_send_single_request = httpx.Client._send_single_request _HttpxAsyncClient_send_single_request = httpx.AsyncClient._send_single_request class CassettePatcherBuilder: def _build_patchers_from_mock_triples_decorator(function): @functools.wraps(function) def wrapped(self, *args, **kwargs): return self._build_patchers_from_mock_triples(function(self, *args, **kwargs)) return wrapped def __init__(self, cassette): self._cassette = cassette self._class_to_cassette_subclass = {} def build(self): return itertools.chain( self._httplib(), self._requests(), self._boto3(), self._urllib3(), self._httplib2(), self._tornado(), self._aiohttp(), self._httpx(), self._build_patchers_from_mock_triples(self._cassette.custom_patches), ) def _build_patchers_from_mock_triples(self, mock_triples): for args in mock_triples: patcher = self._build_patcher(*args) if patcher: yield patcher def _build_patcher(self, obj, patched_attribute, replacement_class): if not hasattr(obj, patched_attribute): return return mock.patch.object( obj, patched_attribute, self._recursively_apply_get_cassette_subclass(replacement_class), ) def _recursively_apply_get_cassette_subclass(self, replacement_dict_or_obj): """One of the subtleties of this class is that it does not directly replace HTTPSConnection with `VCRRequestsHTTPSConnection`, but a subclass of the aforementioned class that has the `cassette` class attribute assigned to `self._cassette`. This behavior is necessary to properly support nested cassette contexts. This function exists to ensure that we use the same class object (reference) to patch everything that replaces VCRRequestHTTP[S]Connection, but that we can talk about patching them with the raw references instead, and without worrying about exactly where the subclass with the relevant value for `cassette` is first created. The function is recursive because it looks in to dictionaries and replaces class values at any depth with the subclass described in the previous paragraph. """ if isinstance(replacement_dict_or_obj, dict): for key, replacement_obj in replacement_dict_or_obj.items(): replacement_obj = self._recursively_apply_get_cassette_subclass(replacement_obj) replacement_dict_or_obj[key] = replacement_obj return replacement_dict_or_obj if hasattr(replacement_dict_or_obj, "cassette"): replacement_dict_or_obj = self._get_cassette_subclass(replacement_dict_or_obj) return replacement_dict_or_obj def _get_cassette_subclass(self, klass): if klass.cassette is not None: return klass if klass not in self._class_to_cassette_subclass: subclass = self._build_cassette_subclass(klass) self._class_to_cassette_subclass[klass] = subclass return self._class_to_cassette_subclass[klass] def _build_cassette_subclass(self, base_class): bases = (base_class,) if not issubclass(base_class, object): # Check for old style class bases += (object,) return type(f"{base_class.__name__}{self._cassette._path}", bases, {"cassette": self._cassette}) @_build_patchers_from_mock_triples_decorator def _httplib(self): yield httplib, "HTTPConnection", VCRHTTPConnection yield httplib, "HTTPSConnection", VCRHTTPSConnection def _requests(self): try: from .stubs import requests_stubs except ImportError: # pragma: no cover return () return self._urllib3_patchers(cpool, conn, requests_stubs) @_build_patchers_from_mock_triples_decorator def _boto3(self): try: # botocore using awsrequest import botocore.awsrequest as cpool except ImportError: # pragma: no cover pass else: from .stubs import boto3_stubs log.debug("Patching boto3 cpool with %s", cpool) yield cpool.AWSHTTPConnectionPool, "ConnectionCls", boto3_stubs.VCRRequestsHTTPConnection yield cpool.AWSHTTPSConnectionPool, "ConnectionCls", boto3_stubs.VCRRequestsHTTPSConnection def _patched_get_conn(self, connection_pool_class, connection_class_getter): get_conn = connection_pool_class._get_conn @functools.wraps(get_conn) def patched_get_conn(pool, timeout=None): connection = get_conn(pool, timeout) connection_class = ( pool.ConnectionCls if hasattr(pool, "ConnectionCls") else connection_class_getter() ) # We need to make sure that we are actually providing a # patched version of the connection class. This might not # always be the case because the pool keeps previously # used connections (which might actually be of a different # class) around. This while loop will terminate because # eventually the pool will run out of connections. while not isinstance(connection, connection_class): connection = get_conn(pool, timeout) return connection return patched_get_conn def _patched_new_conn(self, connection_pool_class, connection_remover): new_conn = connection_pool_class._new_conn @functools.wraps(new_conn) def patched_new_conn(pool): new_connection = new_conn(pool) connection_remover.add_connection_to_pool_entry(pool, new_connection) return new_connection return patched_new_conn def _urllib3(self): try: import urllib3.connection as conn import urllib3.connectionpool as cpool except ImportError: # pragma: no cover return () from .stubs import urllib3_stubs return self._urllib3_patchers(cpool, conn, urllib3_stubs) @_build_patchers_from_mock_triples_decorator def _httplib2(self): try: import httplib2 as cpool except ImportError: # pragma: no cover pass else: from .stubs.httplib2_stubs import VCRHTTPConnectionWithTimeout, VCRHTTPSConnectionWithTimeout yield cpool, "HTTPConnectionWithTimeout", VCRHTTPConnectionWithTimeout yield cpool, "HTTPSConnectionWithTimeout", VCRHTTPSConnectionWithTimeout yield ( cpool, "SCHEME_TO_CONNECTION", { "http": VCRHTTPConnectionWithTimeout, "https": VCRHTTPSConnectionWithTimeout, }, ) @_build_patchers_from_mock_triples_decorator def _tornado(self): try: import tornado.simple_httpclient as simple except ImportError: # pragma: no cover pass else: from .stubs.tornado_stubs import vcr_fetch_impl new_fetch_impl = vcr_fetch_impl(self._cassette, _SimpleAsyncHTTPClient_fetch_impl) yield simple.SimpleAsyncHTTPClient, "fetch_impl", new_fetch_impl try: import tornado.curl_httpclient as curl except ImportError: # pragma: no cover pass else: from .stubs.tornado_stubs import vcr_fetch_impl new_fetch_impl = vcr_fetch_impl(self._cassette, _CurlAsyncHTTPClient_fetch_impl) yield curl.CurlAsyncHTTPClient, "fetch_impl", new_fetch_impl @_build_patchers_from_mock_triples_decorator def _aiohttp(self): try: import aiohttp.client as client except ImportError: # pragma: no cover pass else: from .stubs.aiohttp_stubs import vcr_request new_request = vcr_request(self._cassette, _AiohttpClientSessionRequest) yield client.ClientSession, "_request", new_request @_build_patchers_from_mock_triples_decorator def _httpx(self): try: import httpx except ImportError: # pragma: no cover return else: from .stubs.httpx_stubs import async_vcr_send, sync_vcr_send new_async_client_send = async_vcr_send(self._cassette, _HttpxAsyncClient_send_single_request) yield httpx.AsyncClient, "_send_single_request", new_async_client_send new_sync_client_send = sync_vcr_send(self._cassette, _HttpxSyncClient_send_single_request) yield httpx.Client, "_send_single_request", new_sync_client_send def _urllib3_patchers(self, cpool, conn, stubs): http_connection_remover = ConnectionRemover( self._get_cassette_subclass(stubs.VCRRequestsHTTPConnection), ) https_connection_remover = ConnectionRemover( self._get_cassette_subclass(stubs.VCRRequestsHTTPSConnection), ) mock_triples = ( (conn, "VerifiedHTTPSConnection", stubs.VCRRequestsHTTPSConnection), (conn, "HTTPConnection", stubs.VCRRequestsHTTPConnection), (conn, "HTTPSConnection", stubs.VCRRequestsHTTPSConnection), (cpool, "is_connection_dropped", mock.Mock(return_value=False)), # Needed on Windows only (cpool.HTTPConnectionPool, "ConnectionCls", stubs.VCRRequestsHTTPConnection), (cpool.HTTPSConnectionPool, "ConnectionCls", stubs.VCRRequestsHTTPSConnection), ) # These handle making sure that sessions only use the # connections of the appropriate type. mock_triples += ( ( cpool.HTTPConnectionPool, "_get_conn", self._patched_get_conn(cpool.HTTPConnectionPool, lambda: cpool.HTTPConnection), ), ( cpool.HTTPSConnectionPool, "_get_conn", self._patched_get_conn(cpool.HTTPSConnectionPool, lambda: cpool.HTTPSConnection), ), ( cpool.HTTPConnectionPool, "_new_conn", self._patched_new_conn(cpool.HTTPConnectionPool, http_connection_remover), ), ( cpool.HTTPSConnectionPool, "_new_conn", self._patched_new_conn(cpool.HTTPSConnectionPool, https_connection_remover), ), ) return itertools.chain( self._build_patchers_from_mock_triples(mock_triples), (http_connection_remover, https_connection_remover), ) class ConnectionRemover: def __init__(self, connection_class): self._connection_class = connection_class self._connection_pool_to_connections = {} def add_connection_to_pool_entry(self, pool, connection): if isinstance(connection, self._connection_class): self._connection_pool_to_connections.setdefault(pool, set()).add(connection) def __enter__(self): return self def __exit__(self, *args): for pool, connections in self._connection_pool_to_connections.items(): readd_connections = [] while pool.pool and not pool.pool.empty() and connections: connection = pool.pool.get() if isinstance(connection, self._connection_class): connections.remove(connection) connection.close() else: readd_connections.append(connection) for connection in readd_connections: pool._put_conn(connection) for connection in connections: connection.close() def reset_patchers(): yield mock.patch.object(httplib, "HTTPConnection", _HTTPConnection) yield mock.patch.object(httplib, "HTTPSConnection", _HTTPSConnection) try: import urllib3.connection as conn import urllib3.connectionpool as cpool except ImportError: # pragma: no cover pass else: yield mock.patch.object(conn, "VerifiedHTTPSConnection", _VerifiedHTTPSConnection) yield mock.patch.object(conn, "HTTPConnection", _connHTTPConnection) yield mock.patch.object(conn, "HTTPSConnection", _connHTTPSConnection) if hasattr(cpool.HTTPConnectionPool, "ConnectionCls"): yield mock.patch.object(cpool.HTTPConnectionPool, "ConnectionCls", _connHTTPConnection) yield mock.patch.object(cpool.HTTPSConnectionPool, "ConnectionCls", _connHTTPSConnection) try: # unpatch botocore with awsrequest import botocore.awsrequest as cpool except ImportError: # pragma: no cover pass else: if hasattr(cpool.AWSHTTPConnectionPool, "ConnectionCls"): yield mock.patch.object(cpool.AWSHTTPConnectionPool, "ConnectionCls", _cpoolBoto3HTTPConnection) yield mock.patch.object(cpool.AWSHTTPSConnectionPool, "ConnectionCls", _cpoolBoto3HTTPSConnection) if hasattr(cpool, "AWSHTTPSConnection"): yield mock.patch.object(cpool, "AWSHTTPSConnection", _cpoolBoto3HTTPSConnection) try: import httplib2 as cpool except ImportError: # pragma: no cover pass else: yield mock.patch.object(cpool, "HTTPConnectionWithTimeout", _HTTPConnectionWithTimeout) yield mock.patch.object(cpool, "HTTPSConnectionWithTimeout", _HTTPSConnectionWithTimeout) yield mock.patch.object(cpool, "SCHEME_TO_CONNECTION", _SCHEME_TO_CONNECTION) try: import tornado.simple_httpclient as simple except ImportError: # pragma: no cover pass else: yield mock.patch.object(simple.SimpleAsyncHTTPClient, "fetch_impl", _SimpleAsyncHTTPClient_fetch_impl) try: import tornado.curl_httpclient as curl except ImportError: # pragma: no cover pass else: yield mock.patch.object(curl.CurlAsyncHTTPClient, "fetch_impl", _CurlAsyncHTTPClient_fetch_impl) @contextlib.contextmanager def force_reset(): with contextlib.ExitStack() as exit_stack: for patcher in reset_patchers(): exit_stack.enter_context(patcher) yield vcrpy-6.0.1/vcr/persisters/000077500000000000000000000000001455450430400156625ustar00rootroot00000000000000vcrpy-6.0.1/vcr/persisters/__init__.py000066400000000000000000000000001455450430400177610ustar00rootroot00000000000000vcrpy-6.0.1/vcr/persisters/filesystem.py000066400000000000000000000022631455450430400204230ustar00rootroot00000000000000# .. _persister_example: from pathlib import Path from ..serialize import deserialize, serialize class CassetteNotFoundError(FileNotFoundError): pass class CassetteDecodeError(ValueError): pass class FilesystemPersister: @classmethod def load_cassette(cls, cassette_path, serializer): cassette_path = Path(cassette_path) # if cassette path is already Path this is no operation if not cassette_path.is_file(): raise CassetteNotFoundError() try: with cassette_path.open() as f: data = f.read() except UnicodeDecodeError as err: raise CassetteDecodeError("Can't read Cassette, Encoding is broken") from err return deserialize(data, serializer) @staticmethod def save_cassette(cassette_path, cassette_dict, serializer): data = serialize(cassette_dict, serializer) cassette_path = Path(cassette_path) # if cassette path is already Path this is no operation cassette_folder = cassette_path.parent if not cassette_folder.exists(): cassette_folder.mkdir(parents=True) with cassette_path.open("w") as f: f.write(data) vcrpy-6.0.1/vcr/record_mode.py000066400000000000000000000011661455450430400163170ustar00rootroot00000000000000from enum import Enum class RecordMode(str, Enum): """ Configures when VCR will record to the cassette. Can be declared by either using the enumerated value (`vcr.mode.ONCE`) or by simply using the defined string (`once`). `ALL`: Every request is recorded. `ANY`: ? `NEW_EPISODES`: Any request not found in the cassette is recorded. `NONE`: No requests are recorded. `ONCE`: First set of requests is recorded, all others are replayed. Attempting to add a new episode fails. """ ALL = "all" ANY = "any" NEW_EPISODES = "new_episodes" NONE = "none" ONCE = "once" vcrpy-6.0.1/vcr/request.py000066400000000000000000000073231455450430400155260ustar00rootroot00000000000000import logging import warnings from io import BytesIO from urllib.parse import parse_qsl, urlparse from .util import CaseInsensitiveDict log = logging.getLogger(__name__) class Request: """ VCR's representation of a request. """ def __init__(self, method, uri, body, headers): self.method = method self.uri = uri self._was_file = hasattr(body, "read") if self._was_file: self.body = body.read() else: self.body = body self.headers = headers log.debug("Invoking Request %s", self.uri) @property def headers(self): return self._headers @headers.setter def headers(self, value): if not isinstance(value, HeadersDict): value = HeadersDict(value) self._headers = value @property def body(self): return BytesIO(self._body) if self._was_file else self._body @body.setter def body(self, value): if isinstance(value, str): value = value.encode("utf-8") self._body = value def add_header(self, key, value): warnings.warn( "Request.add_header is deprecated. Please assign to request.headers instead.", DeprecationWarning, stacklevel=2, ) self.headers[key] = value @property def scheme(self): return urlparse(self.uri).scheme @property def host(self): return urlparse(self.uri).hostname @property def port(self): parse_uri = urlparse(self.uri) port = parse_uri.port if port is None: try: port = {"https": 443, "http": 80}[parse_uri.scheme] except KeyError: pass return port @property def path(self): return urlparse(self.uri).path @property def query(self): q = urlparse(self.uri).query return sorted(parse_qsl(q)) # alias for backwards compatibility @property def url(self): return self.uri # alias for backwards compatibility @property def protocol(self): return self.scheme def __str__(self): return f"" def __repr__(self): return self.__str__() def _to_dict(self): return { "method": self.method, "uri": self.uri, "body": self.body, "headers": {k: [v] for k, v in self.headers.items()}, } @classmethod def _from_dict(cls, dct): return Request(**dct) class HeadersDict(CaseInsensitiveDict): """ There is a weird quirk in HTTP. You can send the same header twice. For this reason, headers are represented by a dict, with lists as the values. However, it appears that HTTPlib is completely incapable of sending the same header twice. This puts me in a weird position: I want to be able to accurately represent HTTP headers in cassettes, but I don't want the extra step of always having to do [0] in the general case, i.e. request.headers['key'][0] In addition, some servers sometimes send the same header more than once, and httplib *can* deal with this situation. Furthermore, I wanted to keep the request and response cassette format as similar as possible. For this reason, in cassettes I keep a dict with lists as keys, but once deserialized into VCR, I keep them as plain, naked dicts. """ def __setitem__(self, key, value): if isinstance(value, (tuple, list)): value = value[0] # Preserve the case from the first time this key was set. old = self._store.get(key.lower()) if old: key = old[0] super().__setitem__(key, value) vcrpy-6.0.1/vcr/serialize.py000066400000000000000000000041151455450430400160210ustar00rootroot00000000000000import yaml from vcr.request import Request from vcr.serializers import compat # version 1 cassettes started with VCR 1.0.x. # Before 1.0.x, there was no versioning. CASSETTE_FORMAT_VERSION = 1 """ Just a general note on the serialization philosophy here: I prefer cassettes to be human-readable if possible. Yaml serializes bytestrings to !!binary, which isn't readable, so I would like to serialize to strings and from strings, which yaml will encode as utf-8 automatically. All the internal HTTP stuff expects bytestrings, so this whole serialization process feels backwards. Serializing: bytestring -> string (yaml persists to utf-8) Deserializing: string (yaml converts from utf-8) -> bytestring """ def _looks_like_an_old_cassette(data): return isinstance(data, list) and len(data) and "request" in data[0] def _warn_about_old_cassette_format(): raise ValueError( "Your cassette files were generated in an older version " "of VCR. Delete your cassettes or run the migration script." "See http://git.io/mHhLBg for more details.", ) def deserialize(cassette_string, serializer): try: data = serializer.deserialize(cassette_string) # Old cassettes used to use yaml object thingy so I have to # check for some fairly stupid exceptions here except (ImportError, yaml.constructor.ConstructorError): _warn_about_old_cassette_format() if _looks_like_an_old_cassette(data): _warn_about_old_cassette_format() requests = [Request._from_dict(r["request"]) for r in data["interactions"]] responses = [compat.convert_to_bytes(r["response"]) for r in data["interactions"]] return requests, responses def serialize(cassette_dict, serializer): interactions = [ { "request": compat.convert_to_unicode(request._to_dict()), "response": compat.convert_to_unicode(response), } for request, response in zip(cassette_dict["requests"], cassette_dict["responses"]) ] data = {"version": CASSETTE_FORMAT_VERSION, "interactions": interactions} return serializer.serialize(data) vcrpy-6.0.1/vcr/serializers/000077500000000000000000000000001455450430400160135ustar00rootroot00000000000000vcrpy-6.0.1/vcr/serializers/__init__.py000066400000000000000000000000001455450430400201120ustar00rootroot00000000000000vcrpy-6.0.1/vcr/serializers/compat.py000066400000000000000000000047251455450430400176600ustar00rootroot00000000000000def convert_to_bytes(resp): resp = convert_body_to_bytes(resp) return resp def convert_to_unicode(resp): resp = convert_body_to_unicode(resp) return resp def convert_body_to_bytes(resp): """ If the request body is a string, encode it to bytes (for python3 support) By default yaml serializes to utf-8 encoded bytestrings. When this cassette is loaded by python3, it's automatically decoded into unicode strings. This makes sure that it stays a bytestring, since that's what all the internal httplib machinery is expecting. For more info on py3 yaml: http://pyyaml.org/wiki/PyYAMLDocumentation#Python3support """ try: if resp["body"]["string"] is not None and not isinstance(resp["body"]["string"], bytes): resp["body"]["string"] = resp["body"]["string"].encode("utf-8") except (KeyError, TypeError, UnicodeEncodeError): # The thing we were converting either wasn't a dictionary or didn't # have the keys we were expecting. Some of the tests just serialize # and deserialize a string. # Also, sometimes the thing actually is binary, so if you can't encode # it, just give up. pass return resp def _convert_string_to_unicode(string): """ If the string is bytes, decode it to a string (for python3 support) """ result = string try: if string is not None and not isinstance(string, str): result = string.decode("utf-8") except (TypeError, UnicodeDecodeError, AttributeError): # Sometimes the string actually is binary or StringIO object, # so if you can't decode it, just give up. pass return result def convert_body_to_unicode(resp): """ If the request or responses body is bytes, decode it to a string (for python3 support) """ if not isinstance(resp, dict): # Some of the tests just serialize and deserialize a string. return _convert_string_to_unicode(resp) else: body = resp.get("body") if body is not None: try: body["string"] = _convert_string_to_unicode(body["string"]) except (KeyError, TypeError, AttributeError): # The thing we were converting either wasn't a dictionary or # didn't have the keys we were expecting. # For example request object has no 'string' key. resp["body"] = _convert_string_to_unicode(body) return resp vcrpy-6.0.1/vcr/serializers/jsonserializer.py000066400000000000000000000006751455450430400214400ustar00rootroot00000000000000import json def deserialize(cassette_string): return json.loads(cassette_string) def serialize(cassette_dict): error_message = ( "Does this HTTP interaction contain binary data? " "If so, use a different serializer (like the yaml serializer) " "for this request?" ) try: return json.dumps(cassette_dict, indent=4) + "\n" except TypeError: raise TypeError(error_message) from None vcrpy-6.0.1/vcr/serializers/yamlserializer.py000066400000000000000000000005531455450430400214240ustar00rootroot00000000000000import yaml # Use the libYAML versions if possible try: from yaml import CDumper as Dumper from yaml import CLoader as Loader except ImportError: from yaml import Dumper, Loader def deserialize(cassette_string): return yaml.load(cassette_string, Loader=Loader) def serialize(cassette_dict): return yaml.dump(cassette_dict, Dumper=Dumper) vcrpy-6.0.1/vcr/stubs/000077500000000000000000000000001455450430400146175ustar00rootroot00000000000000vcrpy-6.0.1/vcr/stubs/__init__.py000066400000000000000000000327351455450430400167420ustar00rootroot00000000000000"""Stubs for patching HTTP and HTTPS requests""" import logging from http.client import HTTPConnection, HTTPResponse, HTTPSConnection from io import BytesIO from vcr.errors import CannotOverwriteExistingCassetteException from vcr.request import Request from . import compat log = logging.getLogger(__name__) class VCRFakeSocket: """ A socket that doesn't do anything! Used when playing back cassettes, when there is no actual open socket. """ def close(self): pass def settimeout(self, *args, **kwargs): pass def fileno(self): """ This is kinda crappy. requests will watch this descriptor and make sure it's not closed. Return file descriptor 0 since that's stdin. """ return 0 # wonder how bad this is.... def parse_headers(header_list): """ Convert headers from our serialized dict with lists for keys to a HTTPMessage """ header_string = b"" for key, values in header_list.items(): for v in values: header_string += key.encode("utf-8") + b":" + v.encode("utf-8") + b"\r\n" return compat.get_httpmessage(header_string) def serialize_headers(response): headers = response.headers if response.msg is None else response.msg out = {} for key, values in compat.get_headers(headers): out.setdefault(key, []) out[key].extend(values) return out class VCRHTTPResponse(HTTPResponse): """ Stub response class that gets returned instead of a HTTPResponse """ def __init__(self, recorded_response): self.fp = None self.recorded_response = recorded_response self.reason = recorded_response["status"]["message"] self.status = self.code = recorded_response["status"]["code"] self.version = None self._content = BytesIO(self.recorded_response["body"]["string"]) self._closed = False self._original_response = self # for requests.session.Session cookie extraction headers = self.recorded_response["headers"] # Since we are loading a response that has already been serialized, our # response is no longer chunked. That means we don't want any # libraries trying to process a chunked response. By removing the # transfer-encoding: chunked header, this should cause the downstream # libraries to process this as a non-chunked response. te_key = [h for h in headers.keys() if h.upper() == "TRANSFER-ENCODING"] if te_key: del headers[te_key[0]] self.headers = self.msg = parse_headers(headers) self.length = compat.get_header(self.msg, "content-length") or None @property def closed(self): # in python3, I can't change the value of self.closed. So I' # twiddling self._closed and using this property to shadow the real # self.closed from the superclass return self._closed def read(self, *args, **kwargs): return self._content.read(*args, **kwargs) def read1(self, *args, **kwargs): return self._content.read1(*args, **kwargs) def readall(self): return self._content.readall() def readinto(self, *args, **kwargs): return self._content.readinto(*args, **kwargs) def readline(self, *args, **kwargs): return self._content.readline(*args, **kwargs) def readlines(self, *args, **kwargs): return self._content.readlines(*args, **kwargs) def seekable(self): return self._content.seekable() def tell(self): return self._content.tell() def isatty(self): return self._content.isatty() def seek(self, *args, **kwargs): return self._content.seek(*args, **kwargs) def close(self): self._closed = True return True def getcode(self): return self.status def isclosed(self): return self.closed def info(self): return parse_headers(self.recorded_response["headers"]) def getheaders(self): message = parse_headers(self.recorded_response["headers"]) return list(compat.get_header_items(message)) def getheader(self, header, default=None): values = [v for (k, v) in self.getheaders() if k.lower() == header.lower()] if values: return ", ".join(values) else: return default def readable(self): return self._content.readable() @property def length_remaining(self): return self._content.getbuffer().nbytes - self._content.tell() def get_redirect_location(self): """ Returns (a) redirect location string if we got a redirect status code and valid location, (b) None if redirect status and no location, (c) False if not a redirect status code. See https://urllib3.readthedocs.io/en/stable/reference/urllib3.response.html . """ if not (300 <= self.status <= 399): return False return self.getheader("Location") @property def data(self): return self._content.getbuffer().tobytes() def drain_conn(self): pass def stream(self, amt=65536, decode_content=None): while True: b = self._content.read(amt) yield b if not b: break class VCRConnection: # A reference to the cassette that's currently being patched in cassette = None def _port_postfix(self): """ Returns empty string for the default port and ':port' otherwise """ port = self.real_connection.port default_port = {"https": 443, "http": 80}[self._protocol] return f":{port}" if port != default_port else "" def _uri(self, url): """Returns request absolute URI""" if url and not url.startswith("/"): # Then this must be a proxy request. return url uri = f"{self._protocol}://{self.real_connection.host}{self._port_postfix()}{url}" log.debug("Absolute URI: %s", uri) return uri def _url(self, uri): """Returns request selector url from absolute URI""" prefix = f"{self._protocol}://{self.real_connection.host}{self._port_postfix()}" return uri.replace(prefix, "", 1) def request(self, method, url, body=None, headers=None, *args, **kwargs): """Persist the request metadata in self._vcr_request""" self._vcr_request = Request(method=method, uri=self._uri(url), body=body, headers=headers or {}) log.debug(f"Got {self._vcr_request}") # Note: The request may not actually be finished at this point, so # I'm not sending the actual request until getresponse(). This # allows me to compare the entire length of the response to see if it # exists in the cassette. self._sock = VCRFakeSocket() def putrequest(self, method, url, *args, **kwargs): """ httplib gives you more than one way to do it. This is a way to start building up a request. Usually followed by a bunch of putheader() calls. """ self._vcr_request = Request(method=method, uri=self._uri(url), body="", headers={}) log.debug(f"Got {self._vcr_request}") def putheader(self, header, *values): self._vcr_request.headers[header] = values def send(self, data): """ This method is called after request(), to add additional data to the body of the request. So if that happens, let's just append the data onto the most recent request in the cassette. """ self._vcr_request.body = self._vcr_request.body + data if self._vcr_request.body else data def close(self): # Note: the real connection will only close if it's open, so # no need to check that here. self.real_connection.close() def endheaders(self, message_body=None): """ Normally, this would actually send the request to the server. We are not sending the request until getting the response, so bypass this part and just append the message body, if any. """ if message_body is not None: self._vcr_request.body = message_body def getresponse(self, _=False, **kwargs): """Retrieve the response""" # Check to see if the cassette has a response for this request. If so, # then return it if self.cassette.can_play_response_for(self._vcr_request): log.info(f"Playing response for {self._vcr_request} from cassette") response = self.cassette.play_response(self._vcr_request) return VCRHTTPResponse(response) else: if self.cassette.write_protected and self.cassette.filter_request(self._vcr_request): raise CannotOverwriteExistingCassetteException( cassette=self.cassette, failed_request=self._vcr_request, ) # Otherwise, we should send the request, then get the response # and return it. log.info(f"{self._vcr_request} not in cassette, sending to real server") # This is imported here to avoid circular import. # TODO(@IvanMalison): Refactor to allow normal import. from vcr.patch import force_reset with force_reset(): self.real_connection.request( method=self._vcr_request.method, url=self._url(self._vcr_request.uri), body=self._vcr_request.body, headers=self._vcr_request.headers, ) # get the response response = self.real_connection.getresponse() response_data = response.data if hasattr(response, "data") else response.read() # put the response into the cassette response = { "status": {"code": response.status, "message": response.reason}, "headers": serialize_headers(response), "body": {"string": response_data}, } self.cassette.append(self._vcr_request, response) return VCRHTTPResponse(response) def set_debuglevel(self, *args, **kwargs): self.real_connection.set_debuglevel(*args, **kwargs) def connect(self, *args, **kwargs): """ httplib2 uses this. Connects to the server I'm assuming. Only pass to the baseclass if we don't have a recorded response and are not write-protected. """ if hasattr(self, "_vcr_request") and self.cassette.can_play_response_for(self._vcr_request): # We already have a response we are going to play, don't # actually connect return if self.cassette.write_protected: # Cassette is write-protected, don't actually connect return from vcr.patch import force_reset with force_reset(): return self.real_connection.connect(*args, **kwargs) self._sock = VCRFakeSocket() @property def sock(self): if self.real_connection.sock: return self.real_connection.sock return self._sock @sock.setter def sock(self, value): if self.real_connection.sock: self.real_connection.sock = value def __init__(self, *args, **kwargs): kwargs.pop("strict", None) # apparently this is gone in py3 # need to temporarily reset here because the real connection # inherits from the thing that we are mocking out. Take out # the reset if you want to see what I mean :) from vcr.patch import force_reset with force_reset(): self.real_connection = self._baseclass(*args, **kwargs) self._sock = None def __setattr__(self, name, value): """ We need to define this because any attributes that are set on the VCRConnection need to be propagated to the real connection. For example, urllib3 will set certain attributes on the connection, such as 'ssl_version'. These attributes need to get set on the real connection to have the correct and expected behavior. TODO: Separately setting the attribute on the two instances is not ideal. We should switch to a proxying implementation. """ try: setattr(self.real_connection, name, value) except AttributeError: # raised if real_connection has not been set yet, such as when # we're setting the real_connection itself for the first time pass super().__setattr__(name, value) def __getattr__(self, name): """ Send requests for weird attributes up to the real connection (counterpart to __setattr above) """ if self.__dict__.get("real_connection"): # check in case real_connection has not been set yet, such as when # we're setting the real_connection itself for the first time return getattr(self.real_connection, name) return super().__getattr__(name) for k, v in HTTPConnection.__dict__.items(): if isinstance(v, staticmethod): setattr(VCRConnection, k, v) class VCRHTTPConnection(VCRConnection): """A Mocked class for HTTP requests""" _baseclass = HTTPConnection _protocol = "http" debuglevel = _baseclass.debuglevel _http_vsn = _baseclass._http_vsn class VCRHTTPSConnection(VCRConnection): """A Mocked class for HTTPS requests""" _baseclass = HTTPSConnection _protocol = "https" is_verified = True debuglevel = _baseclass.debuglevel _http_vsn = _baseclass._http_vsn vcrpy-6.0.1/vcr/stubs/aiohttp_stubs.py000066400000000000000000000232061455450430400200640ustar00rootroot00000000000000"""Stubs for aiohttp HTTP clients""" import asyncio import functools import json import logging from http.cookies import CookieError, Morsel, SimpleCookie from typing import Mapping, Union from aiohttp import ClientConnectionError, ClientResponse, CookieJar, RequestInfo, hdrs, streams from aiohttp.helpers import strip_auth_from_url from multidict import CIMultiDict, CIMultiDictProxy, MultiDict from yarl import URL from vcr.errors import CannotOverwriteExistingCassetteException from vcr.request import Request log = logging.getLogger(__name__) class MockStream(asyncio.StreamReader, streams.AsyncStreamReaderMixin): pass class MockClientResponse(ClientResponse): def __init__(self, method, url, request_info=None): super().__init__( method=method, url=url, writer=None, continue100=None, timer=None, request_info=request_info, traces=None, loop=asyncio.get_event_loop(), session=None, ) async def json(self, *, encoding="utf-8", loads=json.loads, **kwargs): stripped = self._body.strip() if not stripped: return None return loads(stripped.decode(encoding)) async def text(self, encoding="utf-8", errors="strict"): return self._body.decode(encoding, errors=errors) async def read(self): return self._body def release(self): pass @property def content(self): s = MockStream() s.feed_data(self._body) s.feed_eof() return s def build_response(vcr_request, vcr_response, history): request_info = RequestInfo( url=URL(vcr_request.url), method=vcr_request.method, headers=_deserialize_headers(vcr_request.headers), real_url=URL(vcr_request.url), ) response = MockClientResponse(vcr_request.method, URL(vcr_request.url), request_info=request_info) response.status = vcr_response["status"]["code"] response._body = vcr_response["body"].get("string", b"") response.reason = vcr_response["status"]["message"] response._headers = _deserialize_headers(vcr_response["headers"]) response._history = tuple(history) # cookies for hdr in response.headers.getall(hdrs.SET_COOKIE, ()): try: cookies = SimpleCookie(hdr) for cookie_name, cookie in cookies.items(): expires = cookie.get("expires", "").strip() if expires: log.debug('Ignoring expiration date: %s="%s"', cookie_name, expires) cookie["expires"] = "" response.cookies.load(cookie.output(header="").strip()) except CookieError as exc: log.warning("Can not load response cookies: %s", exc) response.close() return response def _serialize_headers(headers): """Serialize CIMultiDictProxy to a pickle-able dict because proxy objects forbid pickling: https://github.com/aio-libs/multidict/issues/340 """ # Mark strings as keys so 'istr' types don't show up in # the cassettes as comments. serialized_headers = {} for k, v in headers.items(): serialized_headers.setdefault(str(k), []).append(v) return serialized_headers def _deserialize_headers(headers): deserialized_headers = CIMultiDict() for k, vs in headers.items(): if isinstance(vs, list): for v in vs: deserialized_headers.add(k, v) else: deserialized_headers.add(k, vs) return CIMultiDictProxy(deserialized_headers) def play_responses(cassette, vcr_request, kwargs): history = [] allow_redirects = kwargs.get("allow_redirects", True) vcr_response = cassette.play_response(vcr_request) response = build_response(vcr_request, vcr_response, history) # If we're following redirects, continue playing until we reach # our final destination. while allow_redirects and 300 <= response.status <= 399: if "location" not in response.headers: break next_url = URL(response.url).join(URL(response.headers["location"])) # Make a stub VCR request that we can then use to look up the recorded # VCR request saved to the cassette. This feels a little hacky and # may have edge cases based on the headers we're providing (e.g. if # there's a matcher that is used to filter by headers). vcr_request = Request("GET", str(next_url), None, _serialize_headers(response.request_info.headers)) vcr_requests = cassette.find_requests_with_most_matches(vcr_request) for vcr_request, *_ in vcr_requests: if cassette.can_play_response_for(vcr_request): break # Tack on the response we saw from the redirect into the history # list that is added on to the final response. history.append(response) vcr_response = cassette.play_response(vcr_request) response = build_response(vcr_request, vcr_response, history) return response async def record_response(cassette, vcr_request, response): """Record a VCR request-response chain to the cassette.""" try: body = {"string": (await response.read())} # aiohttp raises a ClientConnectionError on reads when # there is no body. We can use this to know to not write one. except ClientConnectionError: body = {} vcr_response = { "status": {"code": response.status, "message": response.reason}, "headers": _serialize_headers(response.headers), "body": body, } cassette.append(vcr_request, vcr_response) async def record_responses(cassette, vcr_request, response): """Because aiohttp follows redirects by default, we must support them by default. This method is used to write individual request-response chains that were implicitly followed to get to the final destination. """ for i, past_response in enumerate(response.history): aiohttp_request = past_response.request_info past_request = Request( aiohttp_request.method, str(aiohttp_request.url), # Record body of first request, rest are following a redirect. None if i else vcr_request.body, _serialize_headers(aiohttp_request.headers), ) await record_response(cassette, past_request, past_response) # If we're following redirects, then the last request-response # we record is the one attached to the `response`. if response.history: aiohttp_request = response.request_info vcr_request = Request( aiohttp_request.method, str(aiohttp_request.url), None, _serialize_headers(aiohttp_request.headers), ) await record_response(cassette, vcr_request, response) def _build_cookie_header(session, cookies, cookie_header, url): url, _ = strip_auth_from_url(url) all_cookies = session._cookie_jar.filter_cookies(url) if cookies is not None: tmp_cookie_jar = CookieJar() tmp_cookie_jar.update_cookies(cookies) req_cookies = tmp_cookie_jar.filter_cookies(url) if req_cookies: all_cookies.load(req_cookies) if not all_cookies and not cookie_header: return None c = SimpleCookie() if cookie_header: c.load(cookie_header) for name, value in all_cookies.items(): if isinstance(value, Morsel): mrsl_val = value.get(value.key, Morsel()) mrsl_val.set(value.key, value.value, value.coded_value) c[name] = mrsl_val else: c[name] = value return c.output(header="", sep=";").strip() def _build_url_with_params(url_str: str, params: Mapping[str, Union[str, int, float]]) -> URL: # This code is basically a copy&paste of aiohttp. # https://github.com/aio-libs/aiohttp/blob/master/aiohttp/client_reqrep.py#L225 url = URL(url_str) q = MultiDict(url.query) url2 = url.with_query(params) q.extend(url2.query) return url.with_query(q) def vcr_request(cassette, real_request): @functools.wraps(real_request) async def new_request(self, method, url, **kwargs): headers = kwargs.get("headers") auth = kwargs.get("auth") headers = self._prepare_headers(headers) data = kwargs.get("data", kwargs.get("json")) params = kwargs.get("params") cookies = kwargs.get("cookies") if auth is not None: headers["AUTHORIZATION"] = auth.encode() request_url = URL(url) if not params else _build_url_with_params(url, params) c_header = headers.pop(hdrs.COOKIE, None) cookie_header = _build_cookie_header(self, cookies, c_header, request_url) if cookie_header: headers[hdrs.COOKIE] = cookie_header vcr_request = Request(method, str(request_url), data, _serialize_headers(headers)) if cassette.can_play_response_for(vcr_request): log.info(f"Playing response for {vcr_request} from cassette") response = play_responses(cassette, vcr_request, kwargs) for redirect in response.history: self._cookie_jar.update_cookies(redirect.cookies, redirect.url) self._cookie_jar.update_cookies(response.cookies, response.url) return response if cassette.write_protected and cassette.filter_request(vcr_request): raise CannotOverwriteExistingCassetteException(cassette=cassette, failed_request=vcr_request) log.info("%s not in cassette, sending to real server", vcr_request) response = await real_request(self, method, url, **kwargs) await record_responses(cassette, vcr_request, response) return response return new_request vcrpy-6.0.1/vcr/stubs/boto3_stubs.py000066400000000000000000000022621455450430400174410ustar00rootroot00000000000000"""Stubs for boto3""" from botocore.awsrequest import AWSHTTPConnection as HTTPConnection from botocore.awsrequest import AWSHTTPSConnection as VerifiedHTTPSConnection from ..stubs import VCRHTTPConnection, VCRHTTPSConnection class VCRRequestsHTTPConnection(VCRHTTPConnection, HTTPConnection): _baseclass = HTTPConnection class VCRRequestsHTTPSConnection(VCRHTTPSConnection, VerifiedHTTPSConnection): _baseclass = VerifiedHTTPSConnection def __init__(self, *args, **kwargs): kwargs.pop("strict", None) # need to temporarily reset here because the real connection # inherits from the thing that we are mocking out. Take out # the reset if you want to see what I mean :) from vcr.patch import force_reset with force_reset(): self.real_connection = self._baseclass(*args, **kwargs) # Make sure to set those attributes as it seems `AWSHTTPConnection` does not # set them, making the connection to fail ! self.real_connection.assert_hostname = kwargs.get("assert_hostname", False) self.real_connection.cert_reqs = kwargs.get("cert_reqs", "CERT_NONE") self._sock = None vcrpy-6.0.1/vcr/stubs/compat.py000066400000000000000000000011021455450430400164460ustar00rootroot00000000000000import http.client from io import BytesIO """ The python3 http.client api moved some stuff around, so this is an abstraction layer that tries to cope with this move. """ def get_header(message, name): return message.getallmatchingheaders(name) def get_header_items(message): for key, values in get_headers(message): for value in values: yield key, value def get_headers(message): for key in set(message.keys()): yield key, message.get_all(key) def get_httpmessage(headers): return http.client.parse_headers(BytesIO(headers)) vcrpy-6.0.1/vcr/stubs/httplib2_stubs.py000066400000000000000000000041661455450430400201500ustar00rootroot00000000000000"""Stubs for httplib2""" from httplib2 import HTTPConnectionWithTimeout, HTTPSConnectionWithTimeout from ..stubs import VCRHTTPConnection, VCRHTTPSConnection class VCRHTTPConnectionWithTimeout(VCRHTTPConnection, HTTPConnectionWithTimeout): _baseclass = HTTPConnectionWithTimeout def __init__(self, *args, **kwargs): """I overrode the init because I need to clean kwargs before calling HTTPConnection.__init__.""" # Delete the keyword arguments that HTTPConnection would not recognize safe_keys = {"host", "port", "strict", "timeout", "source_address"} unknown_keys = set(kwargs.keys()) - safe_keys safe_kwargs = kwargs.copy() for kw in unknown_keys: del safe_kwargs[kw] self.proxy_info = kwargs.pop("proxy_info", None) VCRHTTPConnection.__init__(self, *args, **safe_kwargs) self.sock = self.real_connection.sock class VCRHTTPSConnectionWithTimeout(VCRHTTPSConnection, HTTPSConnectionWithTimeout): _baseclass = HTTPSConnectionWithTimeout def __init__(self, *args, **kwargs): # Delete the keyword arguments that HTTPSConnection would not recognize safe_keys = { "host", "port", "key_file", "cert_file", "strict", "timeout", "source_address", "ca_certs", "disable_ssl_certificate_validation", } unknown_keys = set(kwargs.keys()) - safe_keys safe_kwargs = kwargs.copy() for kw in unknown_keys: del safe_kwargs[kw] self.proxy_info = kwargs.pop("proxy_info", None) if "ca_certs" not in kwargs or kwargs["ca_certs"] is None: try: import httplib2 self.ca_certs = httplib2.CA_CERTS except ImportError: self.ca_certs = None else: self.ca_certs = kwargs["ca_certs"] self.disable_ssl_certificate_validation = kwargs.pop("disable_ssl_certificate_validation", None) VCRHTTPSConnection.__init__(self, *args, **safe_kwargs) self.sock = self.real_connection.sock vcrpy-6.0.1/vcr/stubs/httpx_stubs.py000066400000000000000000000141261455450430400175640ustar00rootroot00000000000000import asyncio import functools import inspect import logging from unittest.mock import MagicMock, patch import httpx from vcr.errors import CannotOverwriteExistingCassetteException from vcr.filters import decode_response from vcr.request import Request as VcrRequest from vcr.serializers.compat import convert_body_to_bytes _httpx_signature = inspect.signature(httpx.Client.request) try: HTTPX_REDIRECT_PARAM = _httpx_signature.parameters["follow_redirects"] except KeyError: HTTPX_REDIRECT_PARAM = _httpx_signature.parameters["allow_redirects"] _logger = logging.getLogger(__name__) def _transform_headers(httpx_response): """ Some headers can appear multiple times, like "Set-Cookie". Therefore transform to every header key to list of values. """ out = {} for key, var in httpx_response.headers.raw: decoded_key = key.decode("utf-8") out.setdefault(decoded_key, []) out[decoded_key].append(var.decode("utf-8")) return out async def _to_serialized_response(resp, aread): # The content shouldn't already have been read in by HTTPX. assert not hasattr(resp, "_decoder") # Retrieve the content, but without decoding it. with patch.dict(resp.headers, {"Content-Encoding": ""}): if aread: await resp.aread() else: resp.read() result = { "status": {"code": resp.status_code, "message": resp.reason_phrase}, "headers": _transform_headers(resp), "body": {"string": resp.content}, } # As the content wasn't decoded, we restore the response to a state which # will be capable of decoding the content for the consumer. del resp._decoder resp._content = resp._get_content_decoder().decode(resp.content) return result def _from_serialized_headers(headers): """ httpx accepts headers as list of tuples of header key and value. """ header_list = [] for key, values in headers.items(): for v in values: header_list.append((key, v)) return header_list @patch("httpx.Response.close", MagicMock()) @patch("httpx.Response.read", MagicMock()) def _from_serialized_response(request, serialized_response, history=None): # Cassette format generated for HTTPX requests by older versions of # vcrpy. We restructure the content to resemble what a regular # cassette looks like. if "status_code" in serialized_response: serialized_response = decode_response( convert_body_to_bytes( { "headers": serialized_response["headers"], "body": {"string": serialized_response["content"]}, "status": {"code": serialized_response["status_code"]}, }, ), ) extensions = None else: extensions = {"reason_phrase": serialized_response["status"]["message"].encode()} response = httpx.Response( status_code=serialized_response["status"]["code"], request=request, headers=_from_serialized_headers(serialized_response["headers"]), content=serialized_response["body"]["string"], history=history or [], extensions=extensions, ) return response def _make_vcr_request(httpx_request, **kwargs): body = httpx_request.read().decode("utf-8") uri = str(httpx_request.url) headers = dict(httpx_request.headers) return VcrRequest(httpx_request.method, uri, body, headers) def _shared_vcr_send(cassette, real_send, *args, **kwargs): real_request = args[1] vcr_request = _make_vcr_request(real_request, **kwargs) if cassette.can_play_response_for(vcr_request): return vcr_request, _play_responses(cassette, real_request, vcr_request, args[0], kwargs) if cassette.write_protected and cassette.filter_request(vcr_request): raise CannotOverwriteExistingCassetteException(cassette=cassette, failed_request=vcr_request) _logger.info("%s not in cassette, sending to real server", vcr_request) return vcr_request, None async def _record_responses(cassette, vcr_request, real_response, aread): for past_real_response in real_response.history: past_vcr_request = _make_vcr_request(past_real_response.request) cassette.append(past_vcr_request, await _to_serialized_response(past_real_response, aread)) if real_response.history: # If there was a redirection keep we want the request which will hold the # final redirect value vcr_request = _make_vcr_request(real_response.request) cassette.append(vcr_request, await _to_serialized_response(real_response, aread)) return real_response def _play_responses(cassette, request, vcr_request, client, kwargs): vcr_response = cassette.play_response(vcr_request) response = _from_serialized_response(request, vcr_response) return response async def _async_vcr_send(cassette, real_send, *args, **kwargs): vcr_request, response = _shared_vcr_send(cassette, real_send, *args, **kwargs) if response: # add cookies from response to session cookie store args[0].cookies.extract_cookies(response) return response real_response = await real_send(*args, **kwargs) await _record_responses(cassette, vcr_request, real_response, aread=True) return real_response def async_vcr_send(cassette, real_send): @functools.wraps(real_send) def _inner_send(*args, **kwargs): return _async_vcr_send(cassette, real_send, *args, **kwargs) return _inner_send def _sync_vcr_send(cassette, real_send, *args, **kwargs): vcr_request, response = _shared_vcr_send(cassette, real_send, *args, **kwargs) if response: # add cookies from response to session cookie store args[0].cookies.extract_cookies(response) return response real_response = real_send(*args, **kwargs) asyncio.run(_record_responses(cassette, vcr_request, real_response, aread=False)) return real_response def sync_vcr_send(cassette, real_send): @functools.wraps(real_send) def _inner_send(*args, **kwargs): return _sync_vcr_send(cassette, real_send, *args, **kwargs) return _inner_send vcrpy-6.0.1/vcr/stubs/requests_stubs.py000066400000000000000000000010561455450430400202660ustar00rootroot00000000000000"""Stubs for requests""" from urllib3.connection import HTTPConnection, VerifiedHTTPSConnection from ..stubs import VCRHTTPConnection, VCRHTTPSConnection # urllib3 defines its own HTTPConnection classes, which requests goes ahead and assumes # you're using. It includes some polyfills for newer features missing in older pythons. class VCRRequestsHTTPConnection(VCRHTTPConnection, HTTPConnection): _baseclass = HTTPConnection class VCRRequestsHTTPSConnection(VCRHTTPSConnection, VerifiedHTTPSConnection): _baseclass = VerifiedHTTPSConnection vcrpy-6.0.1/vcr/stubs/tornado_stubs.py000066400000000000000000000065431455450430400200670ustar00rootroot00000000000000"""Stubs for tornado HTTP clients""" import functools from io import BytesIO from tornado import httputil from tornado.httpclient import HTTPResponse from vcr.errors import CannotOverwriteExistingCassetteException from vcr.request import Request def vcr_fetch_impl(cassette, real_fetch_impl): @functools.wraps(real_fetch_impl) def new_fetch_impl(self, request, callback): headers = request.headers.copy() if request.user_agent: headers.setdefault("User-Agent", request.user_agent) # TODO body_producer, header_callback, and streaming_callback are not # yet supported. unsupported_call = ( getattr(request, "body_producer", None) is not None or request.header_callback is not None or request.streaming_callback is not None ) if unsupported_call: response = HTTPResponse( request, 599, error=Exception( f"The request ({request!r}) uses AsyncHTTPClient functionality " "that is not yet supported by VCR.py. Please make the " "request outside a VCR.py context.", ), request_time=self.io_loop.time() - request.start_time, ) return callback(response) vcr_request = Request(request.method, request.url, request.body, headers) if cassette.can_play_response_for(vcr_request): vcr_response = cassette.play_response(vcr_request) headers = httputil.HTTPHeaders() recorded_headers = vcr_response["headers"] if isinstance(recorded_headers, dict): recorded_headers = recorded_headers.items() for k, vs in recorded_headers: for v in vs: headers.add(k, v) response = HTTPResponse( request, code=vcr_response["status"]["code"], reason=vcr_response["status"]["message"], headers=headers, buffer=BytesIO(vcr_response["body"]["string"]), effective_url=vcr_response.get("url"), request_time=self.io_loop.time() - request.start_time, ) return callback(response) else: if cassette.write_protected and cassette.filter_request(vcr_request): response = HTTPResponse( request, 599, error=CannotOverwriteExistingCassetteException( cassette=cassette, failed_request=vcr_request, ), request_time=self.io_loop.time() - request.start_time, ) return callback(response) def new_callback(response): headers = [(k, response.headers.get_list(k)) for k in response.headers.keys()] vcr_response = { "status": {"code": response.code, "message": response.reason}, "headers": headers, "body": {"string": response.body}, "url": response.effective_url, } cassette.append(vcr_request, vcr_response) return callback(response) real_fetch_impl(self, request, new_callback) return new_fetch_impl vcrpy-6.0.1/vcr/stubs/urllib3_stubs.py000066400000000000000000000007701455450430400177710ustar00rootroot00000000000000"""Stubs for urllib3""" from urllib3.connection import HTTPConnection, VerifiedHTTPSConnection from ..stubs import VCRHTTPConnection, VCRHTTPSConnection # urllib3 defines its own HTTPConnection classes. It includes some polyfills # for newer features missing in older pythons. class VCRRequestsHTTPConnection(VCRHTTPConnection, HTTPConnection): _baseclass = HTTPConnection class VCRRequestsHTTPSConnection(VCRHTTPSConnection, VerifiedHTTPSConnection): _baseclass = VerifiedHTTPSConnection vcrpy-6.0.1/vcr/unittest.py000066400000000000000000000020621455450430400157100ustar00rootroot00000000000000import inspect import os import unittest from .config import VCR class VCRMixin: """A TestCase mixin that provides VCR integration.""" vcr_enabled = True def setUp(self): super().setUp() if self.vcr_enabled: kwargs = self._get_vcr_kwargs() myvcr = self._get_vcr(**kwargs) cm = myvcr.use_cassette(self._get_cassette_name()) self.cassette = cm.__enter__() self.addCleanup(cm.__exit__, None, None, None) def _get_vcr(self, **kwargs): if "cassette_library_dir" not in kwargs: kwargs["cassette_library_dir"] = self._get_cassette_library_dir() return VCR(**kwargs) def _get_vcr_kwargs(self, **kwargs): return kwargs def _get_cassette_library_dir(self): testdir = os.path.dirname(inspect.getfile(self.__class__)) return os.path.join(testdir, "cassettes") def _get_cassette_name(self): return f"{self.__class__.__name__}.{self._testMethodName}.yaml" class VCRTestCase(VCRMixin, unittest.TestCase): pass vcrpy-6.0.1/vcr/util.py000066400000000000000000000073241455450430400150140ustar00rootroot00000000000000import types from collections.abc import Mapping, MutableMapping # Shamelessly stolen from https://github.com/kennethreitz/requests/blob/master/requests/structures.py class CaseInsensitiveDict(MutableMapping): """ A case-insensitive ``dict``-like object. Implements all methods and operations of ``collections.abc.MutableMapping`` as well as dict's ``copy``. Also provides ``lower_items``. All keys are expected to be strings. The structure remembers the case of the last key to be set, and ``iter(instance)``, ``keys()``, ``items()``, ``iterkeys()``, and ``iteritems()`` will contain case-sensitive keys. However, querying and contains testing is case insensitive:: cid = CaseInsensitiveDict() cid['Accept'] = 'application/json' cid['aCCEPT'] == 'application/json' # True list(cid) == ['Accept'] # True For example, ``headers['content-encoding']`` will return the value of a ``'Content-Encoding'`` response header, regardless of how the header name was originally stored. If the constructor, ``.update``, or equality comparison operations are given keys that have equal ``.lower()``s, the behavior is undefined. """ def __init__(self, data=None, **kwargs): self._store = {} if data is None: data = {} self.update(data, **kwargs) def __setitem__(self, key, value): # Use the lowercased key for lookups, but store the actual # key alongside the value. self._store[key.lower()] = (key, value) def __getitem__(self, key): return self._store[key.lower()][1] def __delitem__(self, key): del self._store[key.lower()] def __iter__(self): return (casedkey for casedkey, mappedvalue in self._store.values()) def __len__(self): return len(self._store) def lower_items(self): """Like iteritems(), but with all lowercase keys.""" return ((lowerkey, keyval[1]) for (lowerkey, keyval) in self._store.items()) def __eq__(self, other): if isinstance(other, Mapping): other = CaseInsensitiveDict(other) else: return NotImplemented # Compare insensitively return dict(self.lower_items()) == dict(other.lower_items()) # Copy is required def copy(self): return CaseInsensitiveDict(self._store.values()) def __repr__(self): return str(dict(self.items())) def partition_dict(predicate, dictionary): true_dict = {} false_dict = {} for key, value in dictionary.items(): this_dict = true_dict if predicate(key, value) else false_dict this_dict[key] = value return true_dict, false_dict def compose(*functions): def composed(incoming): res = incoming for function in reversed(functions): if function: res = function(res) return res return composed def read_body(request): if hasattr(request.body, "read"): return request.body.read() return request.body def auto_decorate(decorator, predicate=lambda name, value: isinstance(value, types.FunctionType)): def maybe_decorate(attribute, value): if predicate(attribute, value): value = decorator(value) return value class DecorateAll(type): def __setattr__(cls, attribute, value): return super().__setattr__(attribute, maybe_decorate(attribute, value)) def __new__(cls, name, bases, attributes_dict): new_attributes_dict = { attribute: maybe_decorate(attribute, value) for attribute, value in attributes_dict.items() } return super().__new__(cls, name, bases, new_attributes_dict) return DecorateAll