mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-06-01 01:54:00 +00:00
23 lines
645 B
C++
23 lines
645 B
C++
/**
|
|
* @file data_generation/mock/generate_user.cc
|
|
* @brief Generates deterministic mock user profiles by hashing locale values
|
|
* into predefined username and bio collections.
|
|
*/
|
|
|
|
#include <functional>
|
|
#include <string>
|
|
#include <string_view>
|
|
|
|
#include "data_generation/mock_generator.h"
|
|
|
|
UserResult MockGenerator::GenerateUser(const std::string& locale) {
|
|
const size_t hash = std::hash<std::string>{}(locale);
|
|
|
|
UserResult result;
|
|
const std::string_view username = kUsernames[hash % kUsernames.size()];
|
|
const std::string_view bio = kBios[hash / 11 % kBios.size()];
|
|
result.username = username;
|
|
result.bio = bio;
|
|
return result;
|
|
}
|