Commit 4c30b0a1 authored by Kushal Pandya's avatar Kushal Pandya

Merge branch '64784-re-name-regression' into 'master'

Fix regression in re-naming files

Closes #64784

See merge request gitlab-org/gitlab-ce!30941
parents 433022f1 cd638abb
...@@ -43,10 +43,14 @@ export default { ...@@ -43,10 +43,14 @@ export default {
[stateEntry, stagedFile, openFile, changedFile].forEach(f => { [stateEntry, stagedFile, openFile, changedFile].forEach(f => {
if (f) { if (f) {
Object.assign(f, convertObjectPropsToCamelCase(data, { dropKeys: ['raw', 'baseRaw'] }), { Object.assign(
raw: (stateEntry && stateEntry.raw) || null, f,
baseRaw: null, convertObjectPropsToCamelCase(data, { dropKeys: ['path', 'name', 'raw', 'baseRaw'] }),
}); {
raw: (stateEntry && stateEntry.raw) || null,
baseRaw: null,
},
);
} }
}); });
}, },
......
...@@ -103,6 +103,43 @@ describe('IDE store file mutations', () => { ...@@ -103,6 +103,43 @@ describe('IDE store file mutations', () => {
expect(localState.openFiles[0].rawPath).toEqual(rawPath); expect(localState.openFiles[0].rawPath).toEqual(rawPath);
expect(localFile.rawPath).toEqual(rawPath); expect(localFile.rawPath).toEqual(rawPath);
}); });
it('does not mutate certain props on the file', () => {
const path = 'New Path';
const name = 'New Name';
localFile.path = path;
localFile.name = name;
localState.stagedFiles = [localFile];
localState.changedFiles = [localFile];
localState.openFiles = [localFile];
mutations.SET_FILE_DATA(localState, {
data: {
path: 'Old Path',
name: 'Old Name',
raw: 'Old Raw',
base_raw: 'Old Base Raw',
},
file: localFile,
});
[
localState.stagedFiles[0],
localState.changedFiles[0],
localState.openFiles[0],
localFile,
].forEach(f => {
expect(f).toEqual(
jasmine.objectContaining({
path,
name,
raw: null,
baseRaw: null,
}),
);
});
});
}); });
describe('SET_FILE_RAW_DATA', () => { describe('SET_FILE_RAW_DATA', () => {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment