Skip to content

TST: add CoW test for update() #51426

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 16, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions pandas/tests/copy_view/test_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -1529,6 +1529,42 @@ def test_xs_multiindex(using_copy_on_write, using_array_manager, key, level, axi
tm.assert_frame_equal(df, df_orig)


def test_update_frame(using_copy_on_write):
df1 = DataFrame({"a": [1.0, 2.0, 3.0], "b": [4.0, 5.0, 6.0]})
df2 = DataFrame({"b": [100.0]}, index=[1])
df1_orig = df1.copy()
view = df1[:]

df1.update(df2)

expected = DataFrame({"a": [1.0, 2.0, 3.0], "b": [4.0, 100.0, 6.0]})
tm.assert_frame_equal(df1, expected)
if using_copy_on_write:
# df1 is updated, but its view not
tm.assert_frame_equal(view, df1_orig)
assert np.shares_memory(get_array(df1, "a"), get_array(view, "a"))
assert not np.shares_memory(get_array(df1, "b"), get_array(view, "b"))
else:
tm.assert_frame_equal(view, expected)


def test_update_series(using_copy_on_write):
ser1 = Series([1.0, 2.0, 3.0])
ser2 = Series([100.0], index=[1])
ser1_orig = ser1.copy()
view = ser1[:]

ser1.update(ser2)

expected = Series([1.0, 100.0, 3.0])
tm.assert_series_equal(ser1, expected)
if using_copy_on_write:
# ser1 is updated, but its view not
tm.assert_series_equal(view, ser1_orig)
else:
tm.assert_series_equal(view, expected)


def test_inplace_arithmetic_series():
ser = Series([1, 2, 3])
data = get_array(ser)
Expand Down