1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
|
# -*- coding: utf-8 -*-
# pylint: disable=too-many-public-methods
from __future__ import absolute_import
from .helper import DashboardTestCase
class GaneshaTest(DashboardTestCase):
CEPHFS = True
AUTH_ROLES = ['pool-manager', 'ganesha-manager']
@classmethod
def create_pool(cls, name, pg_num, pool_type, application='rbd'):
data = {
'pool': name,
'pg_num': pg_num,
'pool_type': pool_type,
'application_metadata': [application]
}
if pool_type == 'erasure':
data['flags'] = ['ec_overwrites']
cls._task_post("/api/pool", data)
@classmethod
def setUpClass(cls):
super(GaneshaTest, cls).setUpClass()
cls.create_pool('ganesha', 2**2, 'replicated')
cls._rados_cmd(['-p', 'ganesha', '-N', 'ganesha1', 'create', 'conf-node1'])
cls._rados_cmd(['-p', 'ganesha', '-N', 'ganesha1', 'create', 'conf-node2'])
cls._rados_cmd(['-p', 'ganesha', '-N', 'ganesha1', 'create', 'conf-node3'])
cls._rados_cmd(['-p', 'ganesha', '-N', 'ganesha2', 'create', 'conf-node1'])
cls._rados_cmd(['-p', 'ganesha', '-N', 'ganesha2', 'create', 'conf-node2'])
cls._rados_cmd(['-p', 'ganesha', '-N', 'ganesha2', 'create', 'conf-node3'])
cls._ceph_cmd(['dashboard', 'set-ganesha-clusters-rados-pool-namespace', 'cluster1:ganesha/ganesha1,cluster2:ganesha/ganesha2'])
# RGW setup
cls._radosgw_admin_cmd([
'user', 'create', '--uid', 'admin', '--display-name', 'admin',
'--system', '--access-key', 'admin', '--secret', 'admin'
])
cls._ceph_cmd_with_secret(['dashboard', 'set-rgw-api-secret-key'], 'admin')
cls._ceph_cmd_with_secret(['dashboard', 'set-rgw-api-access-key'], 'admin')
@classmethod
def tearDownClass(cls):
super(GaneshaTest, cls).tearDownClass()
cls._radosgw_admin_cmd(['user', 'rm', '--uid', 'admin', '--purge-data'])
cls._ceph_cmd(['osd', 'pool', 'delete', 'ganesha', 'ganesha', '--yes-i-really-really-mean-it'])
@DashboardTestCase.RunAs('test', 'test', [{'rbd-image': ['create', 'update', 'delete']}])
def test_read_access_permissions(self):
self._get('/api/nfs-ganesha/export')
self.assertStatus(403)
def test_list_daemons(self):
daemons = self._get("/api/nfs-ganesha/daemon")
self.assertEqual(len(daemons), 6)
daemons = [(d['daemon_id'], d['cluster_id']) for d in daemons]
self.assertIn(('node1', 'cluster1'), daemons)
self.assertIn(('node2', 'cluster1'), daemons)
self.assertIn(('node3', 'cluster1'), daemons)
self.assertIn(('node1', 'cluster2'), daemons)
self.assertIn(('node2', 'cluster2'), daemons)
self.assertIn(('node3', 'cluster2'), daemons)
@classmethod
def create_export(cls, path, cluster_id, daemons, fsal, sec_label_xattr=None):
if fsal == 'CEPH':
fsal = {"name": "CEPH", "user_id":"admin", "fs_name": None, "sec_label_xattr": sec_label_xattr}
pseudo = "/cephfs{}".format(path)
else:
fsal = {"name": "RGW", "rgw_user_id": "admin"}
pseudo = "/rgw/{}".format(path if path[0] != '/' else "")
ex_json = {
"path": path,
"fsal": fsal,
"cluster_id": cluster_id,
"daemons": ["node1", "node3"],
"pseudo": pseudo,
"tag": None,
"access_type": "RW",
"squash": "no_root_squash",
"security_label": sec_label_xattr is not None,
"protocols": [4],
"transports": ["TCP"],
"clients": [{
"addresses":["10.0.0.0/8"],
"access_type": "RO",
"squash": "root"
}]
}
return cls._task_post('/api/nfs-ganesha/export', ex_json)
def tearDown(self):
super(GaneshaTest, self).tearDown()
exports = self._get("/api/nfs-ganesha/export")
if self._resp.status_code != 200:
return
self.assertIsInstance(exports, list)
for exp in exports:
self._task_delete("/api/nfs-ganesha/export/{}/{}"
.format(exp['cluster_id'], exp['export_id']))
def test_create_export(self):
exports = self._get("/api/nfs-ganesha/export")
self.assertEqual(len(exports), 0)
data = self.create_export("/foo", 'cluster1', ['node1', 'node2'], 'CEPH', "security.selinux")
exports = self._get("/api/nfs-ganesha/export")
self.assertEqual(len(exports), 1)
self.assertDictEqual(exports[0], data)
return data
def test_update_export(self):
export = self.test_create_export()
export['access_type'] = 'RO'
export['daemons'] = ['node1', 'node3']
export['security_label'] = True
data = self._task_put('/api/nfs-ganesha/export/{}/{}'
.format(export['cluster_id'], export['export_id']),
export)
exports = self._get("/api/nfs-ganesha/export")
self.assertEqual(len(exports), 1)
self.assertDictEqual(exports[0], data)
self.assertEqual(exports[0]['daemons'], ['node1', 'node3'])
self.assertEqual(exports[0]['security_label'], True)
def test_delete_export(self):
export = self.test_create_export()
self._task_delete("/api/nfs-ganesha/export/{}/{}"
.format(export['cluster_id'], export['export_id']))
self.assertStatus(204)
def test_get_export(self):
exports = self._get("/api/nfs-ganesha/export")
self.assertEqual(len(exports), 0)
data1 = self.create_export("/foo", 'cluster2', ['node1', 'node2'], 'CEPH')
data2 = self.create_export("mybucket", 'cluster2', ['node2', 'node3'], 'RGW')
export1 = self._get("/api/nfs-ganesha/export/cluster2/1")
self.assertDictEqual(export1, data1)
export2 = self._get("/api/nfs-ganesha/export/cluster2/2")
self.assertDictEqual(export2, data2)
def test_invalid_status(self):
self._ceph_cmd(['dashboard', 'set-ganesha-clusters-rados-pool-namespace', ''])
data = self._get('/api/nfs-ganesha/status')
self.assertStatus(200)
self.assertIn('available', data)
self.assertIn('message', data)
self.assertFalse(data['available'])
self.assertIn('Ganesha config location is not configured. Please set the GANESHA_RADOS_POOL_NAMESPACE setting.',
data['message'])
self._ceph_cmd(['dashboard', 'set-ganesha-clusters-rados-pool-namespace', 'cluster1:ganesha/ganesha1,cluster2:ganesha/ganesha2'])
def test_valid_status(self):
data = self._get('/api/nfs-ganesha/status')
self.assertStatus(200)
self.assertIn('available', data)
self.assertIn('message', data)
self.assertTrue(data['available'])
|