-
-
Notifications
You must be signed in to change notification settings - Fork 4.8k
feature: add GDPR compliance #9865
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
dblythy
wants to merge
5
commits into
parse-community:alpha
Choose a base branch
from
dblythy:feature/gdpr
base: alpha
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or 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,246 @@ | ||
'use strict'; | ||
|
||
const fs = require('fs'); | ||
const path = require('path'); | ||
|
||
describe('Audit Logging - Schema Operations', () => { | ||
const testLogFolder = path.join(__dirname, 'temp-audit-logs-schema'); | ||
|
||
beforeEach(async () => { | ||
if (fs.existsSync(testLogFolder)) { | ||
fs.rmSync(testLogFolder, { recursive: true, force: true }); | ||
} | ||
|
||
await reconfigureServer({ | ||
auditLog: { | ||
auditLogFolder: testLogFolder, | ||
}, | ||
}); | ||
}); | ||
|
||
afterEach(async () => { | ||
if (fs.existsSync(testLogFolder)) { | ||
fs.rmSync(testLogFolder, { recursive: true, force: true }); | ||
} | ||
}); | ||
|
||
it('should log schema creation', async () => { | ||
const schema = { | ||
className: 'AuditSchemaTest', | ||
fields: { | ||
testField: { type: 'String' }, | ||
}, | ||
}; | ||
|
||
await request({ | ||
method: 'POST', | ||
url: Parse.serverURL + '/schemas', | ||
body: schema, | ||
headers: { | ||
'X-Parse-Application-Id': Parse.applicationId, | ||
'X-Parse-Master-Key': Parse.masterKey, | ||
}, | ||
}); | ||
|
||
await new Promise(resolve => setTimeout(resolve, 200)); | ||
|
||
const logFiles = fs.readdirSync(testLogFolder); | ||
expect(logFiles.length).toBeGreaterThan(0); | ||
|
||
const logFile = path.join(testLogFolder, logFiles[0]); | ||
const logContent = fs.readFileSync(logFile, 'utf8'); | ||
|
||
expect(logContent).toContain('SCHEMA_MODIFY'); | ||
expect(logContent).toContain('AuditSchemaTest'); | ||
expect(logContent).toContain('create'); | ||
}); | ||
|
||
it('should log schema update', async () => { | ||
const schema = { | ||
className: 'AuditSchemaUpdate', | ||
fields: { | ||
field1: { type: 'String' }, | ||
}, | ||
}; | ||
|
||
await request({ | ||
method: 'POST', | ||
url: Parse.serverURL + '/schemas', | ||
body: schema, | ||
headers: { | ||
'X-Parse-Application-Id': Parse.applicationId, | ||
'X-Parse-Master-Key': Parse.masterKey, | ||
}, | ||
}); | ||
|
||
await new Promise(resolve => setTimeout(resolve, 200)); | ||
const logFiles1 = fs.readdirSync(testLogFolder); | ||
if (logFiles1.length > 0) { | ||
fs.unlinkSync(path.join(testLogFolder, logFiles1[0])); | ||
} | ||
|
||
await request({ | ||
method: 'PUT', | ||
url: Parse.serverURL + '/schemas/AuditSchemaUpdate', | ||
body: { | ||
fields: { | ||
field2: { type: 'Number' }, | ||
}, | ||
}, | ||
headers: { | ||
'X-Parse-Application-Id': Parse.applicationId, | ||
'X-Parse-Master-Key': Parse.masterKey, | ||
}, | ||
}); | ||
|
||
await new Promise(resolve => setTimeout(resolve, 200)); | ||
|
||
const logFiles = fs.readdirSync(testLogFolder); | ||
expect(logFiles.length).toBeGreaterThan(0); | ||
|
||
const logFile = path.join(testLogFolder, logFiles[0]); | ||
const logContent = fs.readFileSync(logFile, 'utf8'); | ||
|
||
expect(logContent).toContain('SCHEMA_MODIFY'); | ||
expect(logContent).toContain('AuditSchemaUpdate'); | ||
expect(logContent).toContain('update'); | ||
}); | ||
|
||
it('should log schema deletion', async () => { | ||
const schema = { | ||
className: 'AuditSchemaDelete', | ||
fields: { | ||
field1: { type: 'String' }, | ||
}, | ||
}; | ||
|
||
await request({ | ||
method: 'POST', | ||
url: Parse.serverURL + '/schemas', | ||
body: schema, | ||
headers: { | ||
'X-Parse-Application-Id': Parse.applicationId, | ||
'X-Parse-Master-Key': Parse.masterKey, | ||
}, | ||
}); | ||
|
||
await new Promise(resolve => setTimeout(resolve, 200)); | ||
const logFiles1 = fs.readdirSync(testLogFolder); | ||
if (logFiles1.length > 0) { | ||
fs.unlinkSync(path.join(testLogFolder, logFiles1[0])); | ||
} | ||
|
||
await request({ | ||
method: 'DELETE', | ||
url: Parse.serverURL + '/schemas/AuditSchemaDelete', | ||
headers: { | ||
'X-Parse-Application-Id': Parse.applicationId, | ||
'X-Parse-Master-Key': Parse.masterKey, | ||
}, | ||
}); | ||
|
||
await new Promise(resolve => setTimeout(resolve, 200)); | ||
|
||
const logFiles = fs.readdirSync(testLogFolder); | ||
expect(logFiles.length).toBeGreaterThan(0); | ||
|
||
const logFile = path.join(testLogFolder, logFiles[0]); | ||
const logContent = fs.readFileSync(logFile, 'utf8'); | ||
|
||
expect(logContent).toContain('SCHEMA_MODIFY'); | ||
expect(logContent).toContain('AuditSchemaDelete'); | ||
expect(logContent).toContain('delete'); | ||
}); | ||
|
||
it('should log failed schema creation', async () => { | ||
const schema = { | ||
className: '_InvalidClassName', | ||
fields: { | ||
testField: { type: 'String' }, | ||
}, | ||
}; | ||
|
||
try { | ||
await request({ | ||
method: 'POST', | ||
url: Parse.serverURL + '/schemas', | ||
body: schema, | ||
headers: { | ||
'X-Parse-Application-Id': Parse.applicationId, | ||
'X-Parse-Master-Key': Parse.masterKey, | ||
}, | ||
}); | ||
} catch (error) { | ||
// Expected to fail | ||
} | ||
|
||
await new Promise(resolve => setTimeout(resolve, 200)); | ||
|
||
const logFiles = fs.readdirSync(testLogFolder); | ||
if (logFiles.length > 0) { | ||
const logFile = path.join(testLogFolder, logFiles[0]); | ||
const logContent = fs.readFileSync(logFile, 'utf8'); | ||
|
||
expect(logContent).toContain('SCHEMA_MODIFY'); | ||
expect(logContent).toContain('"success":false'); | ||
} | ||
}); | ||
|
||
it('should capture user context in schema logs', async () => { | ||
const schema = { | ||
className: 'AuditSchemaUser', | ||
fields: { | ||
field1: { type: 'String' }, | ||
}, | ||
}; | ||
|
||
await request({ | ||
method: 'POST', | ||
url: Parse.serverURL + '/schemas', | ||
body: schema, | ||
headers: { | ||
'X-Parse-Application-Id': Parse.applicationId, | ||
'X-Parse-Master-Key': Parse.masterKey, | ||
}, | ||
}); | ||
|
||
await new Promise(resolve => setTimeout(resolve, 200)); | ||
|
||
const logFiles = fs.readdirSync(testLogFolder); | ||
const logFile = path.join(testLogFolder, logFiles[0]); | ||
const logContent = fs.readFileSync(logFile, 'utf8'); | ||
|
||
expect(logContent).toContain('SCHEMA_MODIFY'); | ||
}); | ||
|
||
it('should log schema changes with field details', async () => { | ||
const schema = { | ||
className: 'AuditSchemaFields', | ||
fields: { | ||
stringField: { type: 'String' }, | ||
numberField: { type: 'Number' }, | ||
pointerField: { type: 'Pointer', targetClass: '_User' }, | ||
}, | ||
}; | ||
|
||
await request({ | ||
method: 'POST', | ||
url: Parse.serverURL + '/schemas', | ||
body: schema, | ||
headers: { | ||
'X-Parse-Application-Id': Parse.applicationId, | ||
'X-Parse-Master-Key': Parse.masterKey, | ||
}, | ||
}); | ||
|
||
await new Promise(resolve => setTimeout(resolve, 200)); | ||
|
||
const logFiles = fs.readdirSync(testLogFolder); | ||
const logFile = path.join(testLogFolder, logFiles[0]); | ||
const logContent = fs.readFileSync(logFile, 'utf8'); | ||
|
||
expect(logContent).toContain('SCHEMA_MODIFY'); | ||
expect(logContent).toContain('stringField'); | ||
expect(logContent).toContain('numberField'); | ||
}); | ||
}); |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.