๐Ÿ“ฆ ionic-team / trapeze

๐Ÿ“„ project.xml.test.ts ยท 264 lines
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264import { copy, readFile } from '@ionic/utils-fs';
import { XmlFile } from '@trapezedev/project';
import { join } from 'path';
import { temporaryDirectory } from 'tempy';

import { Context, loadContext } from '../../src/ctx';
import { XmlOperation, Operation } from '../../src/definitions';
import Op from '../../src/operations/project/xml';
import { makeOp } from '../utils';

describe('op: project.xml', () => {
  let dir: string;
  let ctx: Context;

  beforeEach(async () => {
    dir = temporaryDirectory();

    await copy('../common/test/fixtures/ios-and-android', dir);

    ctx = await loadContext(dir);
    ctx.args.quiet = true;
  });

  it('should delete attributes', async () => {
    const op: XmlOperation = makeOp('project', 'xml', [
      {
        file: 'project-xml.xml',
        target: '//activity',
        deleteAttributes: [
          'android:launchMode'
        ]
      },
    ]);

    await Op(ctx, op as Operation);

    await ctx.project.commit();

    const file = await readFile(join(dir, 'project-xml.xml'), { encoding: 'utf-8' });
    //console.log(file);
    expect(file.trim()).toBe(`
<?xml version="1.0" encoding="utf-8" ?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="io.ionic.starter">
    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <meta-data android:name="com.google.android.geo.API_KEY" android:value="\${MAPS_API_KEY}" />

        <activity
            android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode"
            android:name="io.ionic.starter.MainActivity"
            android:label="@string/title_activity_main"
            android:theme="@style/AppTheme.NoActionBarLaunch">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <provider
            android:name="androidx.core.content.FileProvider"
            android:authorities="\${applicationId}.fileprovider"
            android:exported="false"
            android:grantUriPermissions="true">
            <meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/file_paths" />
        </provider>
    </application>
</manifest>
    `.trim());
  });

  it('should delete nodes', async () => {
    const op: XmlOperation = makeOp('project', 'xml', [
      {
        file: 'project-xml.xml',
        delete: '//intent-filter'
      },
    ]);

    await Op(ctx, op as Operation);

    await ctx.project.commit();

    const file = await readFile(join(dir, 'project-xml.xml'), { encoding: 'utf-8' });
    //console.log(file);
    expect(file.trim()).toBe(`
<?xml version="1.0" encoding="utf-8" ?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="io.ionic.starter">
    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <meta-data android:name="com.google.android.geo.API_KEY" android:value="\${MAPS_API_KEY}" />

        <activity
            android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode"
            android:name="io.ionic.starter.MainActivity"
            android:label="@string/title_activity_main"
            android:theme="@style/AppTheme.NoActionBarLaunch"
            android:launchMode="singleTask"
        />

        <provider
            android:name="androidx.core.content.FileProvider"
            android:authorities="\${applicationId}.fileprovider"
            android:exported="false"
            android:grantUriPermissions="true">
            <meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/file_paths" />
        </provider>
    </application>
</manifest>
    `.trim());
  });

  it('should delete root and replace', async () => {
    let op: XmlOperation = makeOp('project', 'xml', [
      {
        file: 'project-xml.xml',
        delete: '/manifest'
      },
    ]);

    await Op(ctx, op as Operation);

    let data = ctx.project.vfs.get<XmlFile>(join(dir, 'project-xml.xml'))!.getData();

    // The document element should be null at this point as we deleted the root node
    expect(data!.getDocumentElement()).toBeNull();

    op = makeOp('project', 'xml', [
      {
        file: 'project-xml.xml',
        target: '/',
        inject: `<tag><thing /></tag>`
      },
    ]);

    await Op(ctx, op as Operation);

    // The document element should be null at this point as we deleted the root node
    expect(data!.getDocumentElement()).not.toBeNull();

    await ctx.project.commit();

    const file = await readFile(join(dir, 'project-xml.xml'), { encoding: 'utf-8' });
    //console.log(file);
    expect(file.trim()).toBe(`
<?xml version="1.0" encoding="utf-8" ?>
<tag>
    <thing />
</tag>
    `.trim());
  });


  it('should process multiple replaces', async () => {
    let op: XmlOperation = makeOp('project', 'xml', [
      {
        file: 'project-xml-strings.xml',
        target: 'resources/string[@name="app_name"]',
        replace: '<string name="app_name">$PRODUCT_NAME</string>'
      },
      {
        file: 'project-xml-strings.xml',
        target: 'resources/string[@name="title_activity_main"]',
        replace: '<string name="title_activity_main">$PRODUCT_NAME</string>'
      },
      {
        file: 'project-xml-strings.xml',
        target: 'resources/string[@name="package_name"]',
        replace: '<string name="package_name">$ANDROID_PACKAGE_NAME</string>'
      },
      {
        file: 'project-xml-strings.xml',
        target: 'resources/string[@name="custom_url_scheme"]',
        replace: '<string name="custom_url_scheme">$ANDROID_PACKAGE_NAME</string>'
      },
    ]);

    await Op(ctx, op as Operation);

    await ctx.project.commit();

    const file = await readFile(join(dir, 'project-xml-strings.xml'), { encoding: 'utf-8' });
    //console.log(file);
    expect(file.trim()).toBe(`
<?xml version='1.0' encoding='utf-8' ?>
<resources>
    <string name="app_name">$PRODUCT_NAME</string>
    <string name="title_activity_main">$PRODUCT_NAME</string>
    <string name="package_name">$ANDROID_PACKAGE_NAME</string>
    <string name="custom_url_scheme">$ANDROID_PACKAGE_NAME</string>
</resources>
    `.trim());
  });

  // per https://github.com/ionic-team/trapeze/issues/87
  it('should merge nodes', async () => {
    const op: XmlOperation = makeOp('project', 'xml', [
      {
        file: 'project-xml-strings.xml',
        target: 'resources',
        merge: `
        <resources>
          <string name="app_name">$PRODUCT_NAME</string>
          <string name="title_activity_main">$PRODUCT_NAME</string>
          <string name="package_name">$ANDROID_PACKAGE_NAME</string>
          <string name="custom_url_scheme">$ANDROID_PACKAGE_NAME</string>
        </resources>
        `
      },
    ]);

    await Op(ctx, op as Operation);

    await ctx.project.commit();

    const file = await readFile(join(dir, 'project-xml-strings.xml'), { encoding: 'utf-8' });
    expect(file.trim()).toBe(`
<?xml version='1.0' encoding='utf-8' ?>
<resources>
    <string name="app_name">$PRODUCT_NAME</string>
    <string name="title_activity_main">$PRODUCT_NAME</string>
    <string name="package_name">$ANDROID_PACKAGE_NAME</string>
    <string name="custom_url_scheme">$ANDROID_PACKAGE_NAME</string>
</resources>
    `.trim());
  });

  it('should replace nodes', async () => {
    const op: XmlOperation = makeOp('project', 'xml', [
      {
        file: 'project-xml-strings.xml',
        target: 'resources/string[@name="app_name"]',
        replace: `
          <string name="app_name">$PRODUCT_NAME</string>
        `
      },
    ]);

    await Op(ctx, op as Operation);

    await ctx.project.commit();

    const file = await readFile(join(dir, 'project-xml-strings.xml'), { encoding: 'utf-8' });
    //console.log(file);
    expect(file.trim()).toBe(`
<?xml version='1.0' encoding='utf-8' ?>
<resources>
    <string name="app_name">$PRODUCT_NAME</string>
    <string name="title_activity_main">capacitor-configure-test</string>
    <string name="package_name">io.ionic.starter</string>
    <string name="custom_url_scheme">io.ionic.starter</string>
</resources>`.trim());
  });
});