forked from prebid/prebid-mobile-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPBMGAMBannerEventHandlerTests.swift
93 lines (62 loc) · 3.75 KB
/
PBMGAMBannerEventHandlerTests.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/* Copyright 2018-2021 Prebid.org, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import Foundation
import XCTest
import GoogleMobileAds
import PrebidMobileGAMEventHandlers
class PBMGAMBannerEventHandlerTests: XCTestCase {
func testAdSizesConversion() {
// Static sizes
runSizeCheck(GADAdSizeBanner , CGSize(width: 320, height: 50))
runSizeCheck(GADAdSizeLargeBanner , CGSize(width: 320, height: 100))
runSizeCheck(GADAdSizeMediumRectangle , CGSize(width: 300, height: 250))
runSizeCheck(GADAdSizeFullBanner , CGSize(width: 468, height: 60))
runSizeCheck(GADAdSizeLeaderboard , CGSize(width: 728, height: 90))
runSizeCheck(GADAdSizeSkyscraper , CGSize(width: 120, height: 600))
// Dynamic sizes: need to test with iPhone 11
/// An ad size that spans the full width of the application in portrait orientation. The height is
/// typically 50 points on an iPhone/iPod UI, and 90 points tall on an iPad UI.
runSizeCheck(GADPortraitAnchoredAdaptiveBannerAdSizeWithWidth(414), CGSize(width: 414, height: 65))
/// An ad size that spans the full width of the application in landscape orientation. The height is
/// typically 32 points on an iPhone/iPod UI, and 90 points tall on an iPad UI.
runSizeCheck(GADLandscapeAnchoredAdaptiveBannerAdSizeWithWidth(896), CGSize(width: 896, height: 59))
/// An ad size that spans the full width of its container, with a height dynamically determined by
/// the ad.
runSizeCheck(GADAdSizeFluid, CGSize(width: 393, height: 1))
// Invalid ad size marker.
runSizeCheck(GADAdSizeInvalid, CGSize(width: 0, height: 0))
}
func testAdSizesArray() {
let GADSizes = [ NSValueFromGADAdSize(GADAdSizeBanner),
NSValueFromGADAdSize(GADAdSizeMediumRectangle),
NSValueFromGADAdSize(GADAdSizeInvalid)]
let eventHandler = GAMBannerEventHandler(adUnitID: "some_id", validGADAdSizes: GADSizes);
XCTAssertEqual(eventHandler.adSizes.count, 3)
XCTAssertEqual(eventHandler.adSizes[0] , CGSize(width: 320, height: 50))
XCTAssertEqual(eventHandler.adSizes[1] , CGSize(width: 300, height: 250))
XCTAssertEqual(eventHandler.adSizes[2] , CGSize(width: 0, height: 0))
}
func testInvalidValue() {
runCheckInvalidValue(NSValue(nonretainedObject:42))
runCheckInvalidValue(NSValue(pointer:"Do not panic!"))
}
func runSizeCheck(_ GADSize: GADAdSize, _ size: CGSize, file: StaticString = #file, line: UInt = #line) {
let eventHandler = GAMBannerEventHandler(adUnitID: "some_id", validGADAdSizes: [NSValueFromGADAdSize(GADSize)]);
let val = eventHandler.adSizes.first!
XCTAssertEqual(val, size, file: file, line: line)
}
func runCheckInvalidValue(_ value: NSValue, file: StaticString = #file, line: UInt = #line) {
let eventHandler = GAMBannerEventHandler(adUnitID: "some_id", validGADAdSizes: [value]);
let val = eventHandler.adSizes.first!
XCTAssertEqual(val, CGSize(width: 0, height: 0), file: file, line: line)
}
}