iOS 在模拟器上测试远程推送(Remote Push Notifications)

前言:早就耳闻了 Xcode11.4 能够测试推送了,
左等右等就是不更新,搜搜别人的文章,结果连着点了几个都要付费...就这么一个东西还要给钱,老夫这暴脾气?立马下个Xcode11.4-bata1搞事情...
【注:本文基于Xcode11.4(bata1)】

Xcode11.4的文档中对模拟器测试推送的说明十分简单:

【模拟器支持远程通知模拟,包括后台获取通知。在模拟器上,拖拽APNs文件到目标模拟器时,文件必须是JSON格式,具有有效的Apple推送数据格式,包括“aps”键。还必须在顶层包括一个“Simulator Target Bundle”键,其值为APP的BundleID。同时simctl命令新增了支持发送模拟推送通知:】

$ xcrun simctl push  com.example.my-app ExamplePush.apns

方法1:命令行

1. 创建项目并获取推送权限

随便创建个项目,并在AppDelegate中写入获取推送权限的代码:

    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
        
        let options:UNAuthorizationOptions = [.alert, .sound]
        UNUserNotificationCenter.current().requestAuthorization(options: options) { (success, error) in
            if let info = error?.localizedDescription {
                print(info)
            }
        }
        return true
    }

这里需要注意的是,UNAuthorizationOptions 不能包括临时权限 .provisional,否则模拟器测试时可能无法触发推送。

运行项目,并允许推送。

2. 创建apns格式的json文件

随便找个地方创建测试的json文件:

$ touch test.json    // 此处使用apns后缀更好

在文件中写入推送的完整结构数据

{
    "aps": {
        "alert": {
            "title": "PushTest Title",
            "body": "This is a Simulator Push Test"
        }
    }
}

3. 使用命令测试推送

$ xcrun simctl push  com.example.my-app ExamplePush.apns
// device:设备标识符
// com.example.my-app: App的BundleID
// ExamplePush.apns: 模拟推送的apns文件

知晓了各部分代表啥意思就很简单了,其中可以直接设置为 booted 表示当前开启的模拟器,也可以使用 list devices | grep Booted 命令来获取设备标识或不同情况下测试。

老夫的测试命令为:

$ xcrun simctl push booted Po.PushTest /Users/xurenjie/Desktop/PushTest/payload.json

可以看到booted指定了当前开启的模拟器,Po.PushTest 指定了对应BundleID的APP, 后面的地址是老夫存放测试推送的Json文件


方法2:拖拽APNs文件给模拟器

1. 创建项目并获取推送权限

与方法1相同

2. 创建测试推送的apns文件

$ touch test.apns       // 注意此处的文件后缀为apns
{
    "Simulator Target Bundle": "Po.PushTest",
    "aps": {
        "alert": {
            "title": "PushTest Title",
            "body": "This is a Simulator Push Test"
        }
    }
}

可以看到,这里与方法1中的Json文件基本一致,顶层多了用于指定APP BundleID的Key - "Simulator Target Bundle"

3. 拖拽anps文件到需要测试的模拟器

image

方法3:特殊推送的配置(Headers 配置)

以灵动岛为例,可查看《iOS灵动岛实现(模拟器测试远程推送)》的推送部分。

总结

  1. 模拟器测试推送,需要在Xcode11.4及以上运行
  2. 可通过命令行或拖拽的方式进行测试,前者能应对多样的开发情况,后者更简单方便

你可能感兴趣的:(iOS 在模拟器上测试远程推送(Remote Push Notifications))