0

テスト用に標準のビルトインモックサーバーで実行するUI5アプリケーションがあります。UI5

Web IDEこれは、自動的に生成される mockserver.js のコードです。

sap.ui.define([
"sap/ui/core/util/MockServer",
"sap/ui/model/json/JSONModel",
"sap/base/util/UriParameters",
"sap/base/Log"
], function (MockServer, JSONModel, UriParameters, Log) {
"use strict";

var oMockServer,
    _sAppPath = "de/cimt/test/",
    _sJsonFilesPath = _sAppPath + "localService/mockdata";

var oMockServerInterface = {

    /**
     * Initializes the mock server asynchronously.
     * You can configure the delay with the URL parameter "serverDelay".
     * The local mock data in this folder is returned instead of the real data for testing.
     * @protected
     * @param {object} [oOptionsParameter] init parameters for the mockserver
     * @returns{Promise} a promise that is resolved when the mock server has been started
     */
    init : function (oOptionsParameter) {
        var oOptions = oOptionsParameter || {};

        return new Promise(function(fnResolve, fnReject) {
            var sManifestUrl = sap.ui.require.toUrl(_sAppPath + "manifest.json"),
                oManifestModel = new JSONModel(sManifestUrl);

            oManifestModel.attachRequestCompleted(function ()  {
                var oUriParameters = new UriParameters(window.location.href),
                    // parse manifest for local metatadata URI
                    sJsonFilesUrl = sap.ui.require.toUrl(_sJsonFilesPath),
                    oMainDataSource = oManifestModel.getProperty("/sap.app/dataSources/mainService"),
                    sMetadataUrl = sap.ui.require.toUrl(_sAppPath + oMainDataSource.settings.localUri),
                    // ensure there is a trailing slash
                    sMockServerUrl = /.*\/$/.test(oMainDataSource.uri) ? oMainDataSource.uri : oMainDataSource.uri + "/";
                    // ensure the URL to be relative to the application
                    sMockServerUrl = sMockServerUrl && new URI(sMockServerUrl).absoluteTo(sap.ui.require.toUrl(_sAppPath)).toString();

                // create a mock server instance or stop the existing one to reinitialize
                if (!oMockServer) {
                    oMockServer = new MockServer({
                        rootUri: sMockServerUrl
                    });
                } else {
                    oMockServer.stop();
                }

                // configure mock server with the given options or a default delay of 0.5s
                MockServer.config({
                    autoRespond : true,
                    autoRespondAfter : (oOptions.delay || oUriParameters.get("serverDelay") || 500)
                });

                // simulate all requests using mock data
                oMockServer.simulate(sMetadataUrl, {
                    sMockdataBaseUrl : sJsonFilesUrl,
                    bGenerateMissingMockData : true
                });

                var aRequests = oMockServer.getRequests();

                // compose an error response for each request
                var fnResponse = function (iErrCode, sMessage, aRequest) {
                    aRequest.response = function(oXhr){
                        oXhr.respond(iErrCode, {"Content-Type": "text/plain;charset=utf-8"}, sMessage);
                    };
                };

                // simulate metadata errors
                if (oOptions.metadataError || oUriParameters.get("metadataError")) {
                    aRequests.forEach(function (aEntry) {
                        if (aEntry.path.toString().indexOf("$metadata") > -1) {
                            fnResponse(500, "metadata Error", aEntry);
                        }
                    });
                }

                // simulate request errors
                var sErrorParam = oOptions.errorType || oUriParameters.get("errorType"),
                    iErrorCode = sErrorParam === "badRequest" ? 400 : 500;
                if (sErrorParam) {
                    aRequests.forEach(function (aEntry) {
                        fnResponse(iErrorCode, sErrorParam, aEntry);
                    });
                }

                // custom mock behaviour may be added here

                // set requests and start the server
                oMockServer.setRequests(aRequests);
                oMockServer.start();

                Log.info("Running the app with mock data");
                fnResolve();
            });

            oManifestModel.attachRequestFailed(function () {
                var sError = "Failed to load application manifest";

                Log.error(sError);
                fnReject(new Error(sError));
            });
        });
    },

    /**
     * @public returns the mockserver of the app, should be used in integration tests
     * @returns {sap.ui.core.util.MockServer} the mockserver instance
     */
    getMockServer : function () {
        return oMockServer;
    }
};

return oMockServerInterface;
});

私の oData メタデータのすべてのセットIDの型は整数です! (リアルゲートウェイサーバーでの自動インクリメント)

面白いのは、セットの新しいオブジェクトを作成する9と、最初に作成されたオブジェクトの ID として割り当てられ、2 番目に作成されたオブジェクトなどになります416

明らかなことは、ビルトインのモック サーバーが静的シードなしまたは静的シードありのランダム生成アルゴリズムを使用することです。これが、メタデータ モデルの各セットに対して常に同じ ID チェーンを生成する理由です。

私の質問は、UI5 モック サーバーのこの動作を変更するにはどうすればよいですか?

言い換えれば、モック サーバーのシードとして乱数を設定するにはどうすればよいか、ID のインクリメンタル動作を強制的に使用するにはどうすればよいでしょうか。

id として生成される UI5 のデフォルトの動作の問題は9, 416, 6671, 2631, ...、セットの 1 つに id のアイテムが既にある場合9です。次に、新しいアイテムを作成すると、リストに同じ ID (つまり 9) を持つ 2 つのアイテムが作成されます。

4

1 に答える 1