Fill *_id information for client when using static accounts

Related-Prod: PRODX-18763
Change-Id: Ie6f4092e07bdf28af6cfcfd0fe37645dd1b794c4
(cherry picked from commit aa439722f31055c3e1bdfa833060cd4edc8065c9)
(cherry picked from commit 4d5b1115dd748a02f8bdb04809407d73ff8090e0)
diff --git a/neutron_tempest_plugin/api/base.py b/neutron_tempest_plugin/api/base.py
index 07fcb0b..4e4cae2 100644
--- a/neutron_tempest_plugin/api/base.py
+++ b/neutron_tempest_plugin/api/base.py
@@ -106,6 +106,11 @@
         super(BaseNetworkTest, cls).setup_clients()
         cls.client = cls.os_primary.network_client
 
+        # NOTE(vsaienko): when using static accounts we need
+        # to fill *_id information like project_id, user_id
+        # by authenticating in keystone
+        cls.client.auth_provider.get_token()
+
     @classmethod
     def resource_setup(cls):
         super(BaseNetworkTest, cls).resource_setup()