Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9004729
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T00:57:40+00:00 2026-06-16T00:57:40+00:00

I have a function call that returns an object: r = Foo(x,y) where r

  • 0

I have a function call that returns an object:

r = Foo(x,y)

where r has a rich set of nested properties. For example, I can access r.prop_a.prop_b.prop_c. I would like to mock Foo, such that a specific leaf property of r is modified, i.e. such that r.prop_a.prop_b.prop_c returns a value under my control:

>> r = Foo(x,y)
>> r.prop_a.prop_b.prop_c
'fish'
>> # some mock magic patching of Foo is taking place here
>> r = Foo(x,y)
>> r.prop_a.prop_b.prop_c
'my_fish'

I do not care about intermediate properties much.

Is there an elegant way to mock nested properties with mock?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-16T00:57:41+00:00Added an answer on June 16, 2026 at 12:57 am

    Replace the mock object’s attribute call as you would expect:

    >> r1 = r_original(x, y)
    >> r1.prop_a.prop_b.prop_c
    'fish'
    
    >> returner = mock.MagicMock()
    >> returner.prop_a.prop_b.prop_c = 'fish'
    >> r_mocked = mock.MagicMock(spec_set=r_original, return_value=returner)
    >> r2 = r_mocked(x, y)
    >> r2.prop_a.prop_b
    MagicMock name='returner.prop_a.prop_b' id='87412560'>
    >> r2.prop_a.prop_b.prop_c
    'fish'
    

    This allows you the full power of mocking while defining a specific value.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a function fun that returns a double. I want to call the
I have a C program which has a function call that is defined in
I would like to have a function that can wrap any other function call.
have a Grails domain object that has a custom static function to grab data
I have a function that returns a pointer to an object. Like this: class
I have function getCartItems in cart.js and I want to call that function in
I have a function in R that I call multiple times. I want to
I have a variable that I'm using to build a JavaScript function call, and
I have an ajax call that fires multiple times but is called once. function
I have a function that needs to call a virtual method many times in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.