[storages] fix fs_importing side-effect on entity.data
When creating a new File object, if fs_importing is set,
we want entity.data to be the file content instead of the
filepath for the rest of the transaction.
(see test_bfss_fs_importing_transparency) for test implementation
To make this possible, the storage hooks (entity_added / entity_updated)
must return the correct value to set in the entity dict.
functiondatetuple(d){return[d.getFullYear(),d.getMonth()+1,d.getDate(),d.getHours(),d.getMinutes()];}functionpprint(obj){print('{');for(kinobj){print(' '+k+' = '+obj[k]);}print('}');}functionarrayrepr(array){return'['+array.join(', ')+']';}functionassertArrayEquals(array1,array2){if(array1.length!=array2.length){thrownewcrosscheck.AssertionFailure(array1.join(', ')+' != '+array2.join(', '));}for(vari=0;i<array1.length;i++){if(array1[i]!=array2[i]){thrownewcrosscheck.AssertionFailure(arrayrepr(array1)+' and '+arrayrepr(array2)+' differs at index '+i);}}}