forked from Jigsaw-Code/outline-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
switch to sentry-electron (Jigsaw-Code#232)
- Loading branch information
Showing
18 changed files
with
403 additions
and
235 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/bash -eu | ||
# | ||
# Copyright 2018 The Outline Authors | ||
# | ||
# 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. | ||
|
||
do_action server_manager/electron_app/build | ||
jasmine --config=$ROOT_DIR/jasmine.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,8 +11,7 @@ | |
] | ||
}, | ||
"include": [ | ||
"index.ts", | ||
"preload.ts", | ||
"*.ts", | ||
"../types/*.d.ts" | ||
], | ||
"exclude": [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
// Copyright 2018 The Outline Authors | ||
// | ||
// 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 {throws} from 'assert'; | ||
|
||
import {redactManagerUrl} from './util'; | ||
|
||
describe('XHR breadcrumbs', () => { | ||
it('handles the normal case', () => { | ||
expect(redactManagerUrl('https://124.10.10.2:48000/abcd123/access-keys')) | ||
.toEqual('access-keys'); | ||
}); | ||
|
||
it('handles no port', () => { | ||
expect(redactManagerUrl('https://124.10.10.2/abcd123/access-keys')).toEqual('access-keys'); | ||
}); | ||
|
||
it('handles just one path element', () => { | ||
expect(redactManagerUrl('https://124.10.10.2/abcd123')).toEqual(''); | ||
expect(redactManagerUrl('https://124.10.10.2/abcd123/')).toEqual(''); | ||
}); | ||
|
||
it('handles no pathname', () => { | ||
expect(redactManagerUrl('https://124.10.10.2')).toEqual(''); | ||
expect(redactManagerUrl('https://124.10.10.2/')).toEqual(''); | ||
}); | ||
|
||
it('handles commands with args', () => { | ||
expect(redactManagerUrl('https://124.10.10.2/abcd123/access-keys/52')) | ||
.toEqual('access-keys/52'); | ||
}); | ||
|
||
it('throws on garbage', () => { | ||
throws(() => { | ||
redactManagerUrl('once upon a time'); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// Copyright 2018 The Outline Authors | ||
// | ||
// 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 {URL} from 'url'; | ||
|
||
// Returns a URL's pathname stripped of its first directory name, which may be the empty string if | ||
// there are fewer than two "directories" in the URL's pathname. | ||
// Throws if s cannot be parsed as a URL. | ||
// | ||
// Used to strip PII from management API URLs, e.g.: | ||
// https://124.10.10.2/abcd123/access-keys -> access-keys | ||
// https://124.10.10.2/abcd123/access-keys/52 -> access-keys/52 | ||
// https://124.10.10.2/abcd123 -> (empty string) | ||
export function redactManagerUrl(s: string) { | ||
return new URL(s).pathname.split('/').slice(2).join('/'); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.