Lisa Roach - Demystifying the Patch Function - PyCon 2018

แชร์
ฝัง
  • เผยแพร่เมื่อ 21 ธ.ค. 2024

ความคิดเห็น • 54

  • @rmarianoanaya
    @rmarianoanaya 6 ปีที่แล้ว +37

    Amazing talk! Really good explained, entertaining, and useful.
    "Mock where the object is used", is a very good practical advice!
    Kudos to the speaker, really superb!

  • @Melindax3Cardenas
    @Melindax3Cardenas 2 ปีที่แล้ว

    this is the clearest explanation of patching I've found online

  • @lightninginmyhands4878
    @lightninginmyhands4878 5 ปีที่แล้ว +10

    11:12 - Scope tier
    -- Context Manager - duration is a partial life of a function
    -- Function decorator - duration is the entire life of a function
    -- Class decorator - duration is the entire life of all functions inside the class

  • @mohammadsamir2713
    @mohammadsamir2713 4 ปีที่แล้ว +19

    What's going on, her ability to explain things blew my mind !!

  • @MichaelFoord
    @MichaelFoord 6 ปีที่แล้ว +8

    The best talk of PyCon 2018!

  • @xiuwensun9944
    @xiuwensun9944 5 ปีที่แล้ว +1

    Very good video and worth the time watching. Much clearer than Python documentation.

  • @don0071
    @don0071 6 ปีที่แล้ว +3

    Great talk Lisa! You have addressed the most common problem that the patchers usually confused with

  • @clee546
    @clee546 2 ปีที่แล้ว

    Thank you! Lisa. Your presentation is succinct, clear and engaging; illustrations and examples are simple and to the point. I was new to patch and this really help me out a lot.

  • @lightninginmyhands4878
    @lightninginmyhands4878 5 ปีที่แล้ว +3

    13:05 - It's recommended to use Context Manager for built-in functions
    14:00 - Remember that a decorator creates a MagickMock object. It must be passed as an argument into the tested function.
    14:39 - Yes, decorators can be stacked. However this is at the expense of DRY.
    14:53 - in `setUp`, your patches can be started. You can then stop them all in `addCleanup` if a test goes bad before `tearDown` happens.

  • @findingMyself.25yearsago
    @findingMyself.25yearsago 4 ปีที่แล้ว +1

    A very wonderful clear talk of Lisa 🤩🤩... Haha didn't expect the author would be in the tall😂

  • @liamsism
    @liamsism 5 ปีที่แล้ว +7

    Nice talk! There is some an incorrect example at 22:35. It should be self.x = 20 otherwise it's understandable why f.x is not working.

    • @adamhendry945
      @adamhendry945 2 ปีที่แล้ว

      I was just gonna say that.

  • @lightninginmyhands4878
    @lightninginmyhands4878 5 ปีที่แล้ว +4

    6:50 - Target must be importable
    -- patch auto-imports the target for you
    7:30 - Don't patch where the function is declared, but where it is referenced
    8:42 - If you import a function from a module: Use the importing module's name to target the function instead of the imported module. This is because the importing module's lookup table contains the function
    9:36 - If you import an entire module: Use the imported module's name to target the function instead of the importing function.

  • @croonix
    @croonix 4 ปีที่แล้ว

    Many thanks to Lisa Roach! Very very informative and useful!

  • @12804olivier
    @12804olivier 6 ปีที่แล้ว +7

    haha thank you. You saved me so much time at work.

  • @Radioguy00
    @Radioguy00 4 ปีที่แล้ว

    Extremely clear and concise presentation. Thanks

  • @prowez
    @prowez 3 ปีที่แล้ว

    Great presentation! Patched a lot of holes in my understanding.

  • @saifmohammed1481
    @saifmohammed1481 2 ปีที่แล้ว

    Amazing explanation, especially showing what really happens under the hood... Been struggling with finding good documentation on mocking from the past few days and dunno how i missed this

  • @xmuta
    @xmuta ปีที่แล้ว

    Very good and useful presentation.

  • @2LazySnake
    @2LazySnake 3 ปีที่แล้ว

    Amazing talk, thank you very much for sharing!

  • @ActuallyFiona
    @ActuallyFiona 2 ปีที่แล้ว

    This was a huge help. Thank you!

  • @nch77884
    @nch77884 4 ปีที่แล้ว

    Great explanation for mock n patch. Thanks Lisa!

  • @jasonhoman6525
    @jasonhoman6525 2 ปีที่แล้ว

    This is amazing! Thank you!

  • @kessakessa9394
    @kessakessa9394 3 ปีที่แล้ว

    Perfect explanation. Even layman can understand...

  • @prasukjain9982
    @prasukjain9982 5 ปีที่แล้ว +1

    Really nice explained. It's gonna be very helpful to me.

  • @jasonhoman6525
    @jasonhoman6525 2 ปีที่แล้ว

    Use property in patch,“new” to mock a case statement flow controlled by a string input? Do they have that in python. Thinking in JavaScript

  • @karthikvedantham3459
    @karthikvedantham3459 3 ปีที่แล้ว

    Kudos to Lisa! PyCon

  • @PradeepSusarla
    @PradeepSusarla 6 ปีที่แล้ว +1

    github link or speakerdeck pycon18 does not show any files for this presentation. can anyone please share the link?

  • @yvrelna
    @yvrelna 5 ปีที่แล้ว

    I usually prefer to patch using either a context managers or manual start/stop.
    I'm not really a fan of the decorator version, because they add arguments to test classes, which is just really annoying to work with and because they don't allow you to share the mocking config as easily as the context managers and manual start/stop.
    Using context manager is also a lot more precise because it makes it really obvious which line of the test function actually requires the patched call. If only one line in the test actually requires patch, then just wrap that line on the context manager, and nothing else.
    Manual start/stop is great when you want to totally ignore a dependency. Usually helpful for patching out external calls that is slow or have side effects and failure modes you don't really want to deal with.

  • @MartinThoma
    @MartinThoma 4 ปีที่แล้ว

    This talk is awesome! Thank you!

  • @luchoparalosamigos
    @luchoparalosamigos 3 ปีที่แล้ว

    How do I specify the function that replace the target function?

  • @gaatutube
    @gaatutube 4 ปีที่แล้ว

    How did she make patched object db_write return 10 so that her assert(x, 10) works. Didn't see any code for that.

  • @mostafahassan544
    @mostafahassan544 4 ปีที่แล้ว

    Great one , thanks Lisa!

  • @MichaelCampbell01
    @MichaelCampbell01 2 หลายเดือนก่อน

    Nice, but she forgot to name the mocked_thing in the resource manager example. Should be `with patch('module.db_write') as mocked_writer:`

  • @hoxas
    @hoxas ปีที่แล้ว

    Great talk! Thanks!

  • @japrogramer
    @japrogramer 5 ปีที่แล้ว +8

    God that glove cursor made me anxious

  • @ashrasmun1
    @ashrasmun1 4 ปีที่แล้ว

    There's one crucial thing missing for me - if I patch it in context manager scope - how can I refer to the mock object? how can I assert how many times was it called? I see mock_* object in two other cases (method and class scope) but I can't see it in CM scope

    • @dustinalandzes
      @dustinalandzes 4 ปีที่แล้ว +2

      burbon ­ with mock.patch(‘module.name’) as mock_module:
      You can assert on mock_module

    • @ashrasmun1
      @ashrasmun1 4 ปีที่แล้ว

      @@dustinalandzes thanks :)

  • @ldfsilva
    @ldfsilva 6 ปีที่แล้ว +1

    Great talk !

  • @vasiliyk6775
    @vasiliyk6775 6 ปีที่แล้ว

    Amazing talk! Thank you!

  • @bentaybijamal2299
    @bentaybijamal2299 5 ปีที่แล้ว

    thanks for your good explanation

  • @atomiclambda
    @atomiclambda 5 ปีที่แล้ว

    Excellent talk

  • @johnbalis7898
    @johnbalis7898 5 ปีที่แล้ว

    super useful; thanks!

  • @rahulparshi3172
    @rahulparshi3172 4 ปีที่แล้ว

    thanks for nice explanation:):)

  • @omarocampo7662
    @omarocampo7662 5 ปีที่แล้ว

    Thanks a lot. REgard from MExico city

  • @lisaroach9782
    @lisaroach9782 6 ปีที่แล้ว +1

    If anyone would like to have the slides I have added them here: drive.google.com/file/d/1QvGv8iw5IDHkUNMUXjLDsm-KVsO3Zuhs/view?usp=sharing

  • @danielt8880
    @danielt8880 6 ปีที่แล้ว

    Wow! Good talk

  • @anandg2008
    @anandg2008 5 ปีที่แล้ว

    Awesome

  • @livethumos
    @livethumos 3 ปีที่แล้ว

    p