Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: tests/crowdin_mock_api.py

Issue 29693633: Noissue - Add crowdin api config support (Closed) Base URL: https://hg.adblockplus.org/cms
Patch Set: Address PS6 Created March 9, 2018, 7:21 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | tests/test_translations.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 import os
2
1 from flask import Flask, send_from_directory, jsonify, request 3 from flask import Flask, send_from_directory, jsonify, request
2 4
3 app = Flask(__name__) 5 app = Flask('mock_api')
4 app.request_log = [] 6
7
8 def load(rootdir, zipdir):
9 app.request_log = []
10 app.config['zipdir'] = zipdir
11 app.config['info'] = {'files': [], 'languages': []}
12 app.config['supported_languages'] = []
13
14 for root, locales, files in os.walk(rootdir):
15 for locale in locales:
16 files = []
17 app.config['supported_languages'].append({'crowdin_code': locale})
18 app.config['info']['languages'].append(
19 {'code': locale,
20 'can_translate': 1,
21 'can_approve': 1
22 })
23
24 for translations in os.listdir(os.path.join(root, locale)):
25 files.append({'name': translations, 'node_type': 'file'})
26
27 app.config['info']['files'].append({'name': locale,
28 'files': files,
29 'node_type': 'directory'
30 })
31 return app
5 32
6 33
7 @app.before_request 34 @app.before_request
8 def log_request_info(): 35 def log_request_info():
9 log = (request.url, str(request.get_data())) 36 app.request_log.append((request.url, str(request.get_data())))
10 app.request_log.append(log)
11 37
12 38
13 @app.route('/api/project/test/info', methods=['GET']) 39 @app.route('/api/project/test/info', methods=['GET'])
14 def info(): 40 def info():
15 return jsonify( 41 return jsonify(app.config['info'])
16 {
17 'languages': [
18 {
19 'name': 'German',
20 'code': 'de',
21 'can_translate': 1,
22 'can_approve': 1,
23 42
24 },
25 {
26 'name': 'English',
27 'code': 'en',
28 'can_translate': 1,
29 'can_approve': 1,
30 43
31 }, 44 @app.route('/api/project/test/edit-project', methods=['POST'])
32 45 def edit():
33 ], 46 return jsonify()
34 'files': [
35 {
36 'node_type': 'directory',
37 'name': 'en',
38 'files': [
39 {
40 'node_type': 'file',
41 'name': 'translate.json',
42 'created': '2016-09-26 08:30:07',
43 'last_updated': '2016-09-26 08:30:08',
44 'last_accessed': None,
45 'last_revision': '1'
46 },
47 ]
48 },
49 {
50 'node_type': 'directory',
51 'name': 'de',
52 'files': [
53 {
54 'node_type': 'file',
55 'name': 'translate.json',
56 'created': '2016-09-26 08:30:07',
57 'last_updated': '2016-09-26 08:30:08',
58 'last_accessed': None,
59 'last_revision': '1'
60 }
61 ]
62 }
63 ]
64 }
65 )
66 47
67 48
68 @app.route('/api/project/test/supported-languages', methods=['GET']) 49 @app.route('/api/project/test/supported-languages', methods=['GET'])
69 def supported_langs(): 50 def supported_langs():
70 return jsonify( 51 return jsonify(app.config['supported_languages'])
71 [
72 {
73 'name': 'German',
74 'crowdin_code': 'de',
75 'editor_code': 'de',
76 'iso_639_1': 'de',
77 'iso_639_3': 'deu',
78 'locale': 'de-DE'
79 },
80 {
81 'name': 'English',
82 'crowdin_code': 'en',
83 'editor_code': 'en',
84 'iso_639_1': 'en',
85 'iso_639_3': 'eng',
86 'locale': 'en-US'
87 },
88 ]
89 )
90 52
91 53
92 @app.route('/api/project/test/add-file', methods=['POST']) 54 @app.route('/api/project/test/add-file', methods=['POST'])
93 def add_file(): 55 def add_file():
94 app.string = request.get_data() 56 app.string = request.get_data()
95 return jsonify() 57 return jsonify()
96 58
97 59
98 @app.route('/api/project/test/upload-translation', methods=['POST']) 60 @app.route('/api/project/test/upload-translation', methods=['POST'])
99 def upload_translation(): 61 def upload_translation():
(...skipping 10 matching lines...) Expand all
110 return jsonify() 72 return jsonify()
111 73
112 74
113 @app.route('/api/project/test/export', methods=['GET']) 75 @app.route('/api/project/test/export', methods=['GET'])
114 def export(): 76 def export():
115 return jsonify({'success': {'status': 'skipped'}}) 77 return jsonify({'success': {'status': 'skipped'}})
116 78
117 79
118 @app.route('/api/project/test/download/all.zip', methods=['GET']) 80 @app.route('/api/project/test/download/all.zip', methods=['GET'])
119 def get_zip(): 81 def get_zip():
120 return send_from_directory('', 'all.zip') 82 return send_from_directory(app.config['zipdir'], 'all.zip')
OLDNEW
« no previous file with comments | « no previous file | tests/test_translations.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld