paust-team / paust-db

GNU General Public License v3.0
6 stars 5 forks source link

Remove FixedSalt function and set random seed explicitly for unit test #81

Closed dragon0170 closed 5 years ago

dragon0170 commented 5 years ago

Reference

76

80 PR에서 client쪽의 unit test를 위해 KeyObj가 random한 salt가 아닌 고정된 salt값을 갖도록 하기 위해 WriteDataFixedSalt, WriteFileFixedSalt, WriteFilesInDirFixedSalt 함수를 추가했습니다.

하지만 go random의 seed를 고정하면 매번 같은 salt를 생성할 수 있으므로 FixedSalt 함수 없이도 client unit test를 진행할 수 있습니다. 따라서 해당 방식으로 unit test를 변경하는 것이 좋아보입니다.

elon0823 commented 5 years ago

82 에서 해결하여 issue close 합니다.