Skip to content

Commit 49ee786

Browse files
authored
Prevented hostname from being changed when using BrowserPollConnection w/ emulator (#6912)
1 parent 3ee35f9 commit 49ee786

File tree

5 files changed

+28
-7
lines changed

5 files changed

+28
-7
lines changed

.changeset/fresh-experts-mix.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"@firebase/database-compat": patch
3+
"@firebase/database": patch
4+
---
5+
6+
Fixed issue where hostname set by `connectDatabaseEmulator` was being overridden by longpolling response

packages/database-compat/test/database.test.ts

+9-1
Original file line numberDiff line numberDiff line change
@@ -272,18 +272,26 @@ describe('Database Tests', () => {
272272
});
273273

274274
it('refFromURL() validates argument', () => {
275+
// TODO: Remove all any references
275276
const db = (firebase as any).database();
276277
expect(() => {
277278
const ref = (db as any).refFromURL();
278279
}).to.throw(/Expects at least 1/);
279280
});
280281

281282
it('can call useEmulator before use', () => {
282-
const db = (firebase as any).database();
283+
const db = firebase.database();
283284
db.useEmulator('localhost', 1234);
285+
// Cast as any as _delegate isn't a public property
286+
expect((db as any)._delegate._repo.repoInfo_.isUsingEmulator).to.be.true;
284287
expect(db.ref().toString()).to.equal('http://localhost:1234/');
285288
});
286289

290+
it('initializes usingEmulator to false before use', () => {
291+
const db = firebase.database();
292+
expect((db as any)._delegate._repo.repoInfo_.isUsingEmulator).to.be.false;
293+
});
294+
287295
it('cannot call useEmulator after use', () => {
288296
const db = (firebase as any).database();
289297

packages/database/src/api/Database.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,8 @@ function repoManagerApplyEmulatorSettings(
9595
repo.repoInfo_.webSocketOnly,
9696
repo.repoInfo_.nodeAdmin,
9797
repo.repoInfo_.persistenceKey,
98-
repo.repoInfo_.includeNamespaceInQueryParams
98+
repo.repoInfo_.includeNamespaceInQueryParams,
99+
/*isUsingEmulator=*/ true
99100
);
100101

101102
if (tokenProvider) {

packages/database/src/core/RepoInfo.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ export class RepoInfo {
4545
public readonly webSocketOnly: boolean,
4646
public readonly nodeAdmin: boolean = false,
4747
public readonly persistenceKey: string = '',
48-
public readonly includeNamespaceInQueryParams: boolean = false
48+
public readonly includeNamespaceInQueryParams: boolean = false,
49+
public readonly isUsingEmulator: boolean = false
4950
) {
5051
this._host = host.toLowerCase();
5152
this._domain = this._host.substr(this._host.indexOf('.') + 1);

packages/database/src/realtime/Connection.ts

+9-4
Original file line numberDiff line numberDiff line change
@@ -337,14 +337,19 @@ export class Connection {
337337
if (MESSAGE_DATA in controlData) {
338338
const payload = controlData[MESSAGE_DATA];
339339
if (cmd === SERVER_HELLO) {
340-
this.onHandshake_(
341-
payload as {
340+
const handshakePayload = {
341+
...(payload as {
342342
ts: number;
343343
v: string;
344344
h: string;
345345
s: string;
346-
}
347-
);
346+
})
347+
};
348+
if (this.repoInfo_.isUsingEmulator) {
349+
// Upon connecting, the emulator will pass the hostname that it's aware of, but we prefer the user's set hostname via `connectDatabaseEmulator` over what the emulator passes.
350+
handshakePayload.h = this.repoInfo_.host;
351+
}
352+
this.onHandshake_(handshakePayload);
348353
} else if (cmd === END_TRANSMISSION) {
349354
this.log_('recvd end transmission on primary');
350355
this.rx_ = this.secondaryConn_;

0 commit comments

Comments
 (0)